Kaydet (Commit) ecdc626d authored tarafından Markus Mohrhard's avatar Markus Mohrhard

don't show the anonymous db string, it is for internal use only

üst 259839dc
......@@ -196,9 +196,17 @@ void ScFilterOptionsMgr::Init()
}
}
theDbArea.appendAscii(RTL_CONSTASCII_STRINGPARAM(" ("));
theDbArea.append(theDbName).append(')');
rFtDbArea.SetText( theDbArea.makeStringAndClear() );
if ( !theDbName.equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(STR_DB_LOCAL_NONAME)) )
{
theDbArea.appendAscii(RTL_CONSTASCII_STRINGPARAM(" ("));
theDbArea.append(theDbName).append(')');
rFtDbArea.SetText( theDbArea.makeStringAndClear() );
}
else
{
rFtDbAreaLabel.SetText( rtl::OUString() );
rFtDbArea.SetText( rtl::OUString() );
}
//------------------------------------------------------
// Kopierposition:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment