summaryrefslogtreecommitdiffstats
path: root/forms/source/component/ListBox.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'forms/source/component/ListBox.cxx')
-rw-r--r--forms/source/component/ListBox.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/ListBox.cxx b/forms/source/component/ListBox.cxx
index 67b6f7c69ae9..696ff231ff64 100644
--- a/forms/source/component/ListBox.cxx
+++ b/forms/source/component/ListBox.cxx
@@ -787,15 +787,15 @@ namespace frm
OUString aQuote = xMeta->getIdentifierQuoteString();
OUString aStatement("SELECT ");
if (aBoundFieldName.isEmpty()) // act like a combobox
- aStatement += OUString("DISTINCT ");
+ aStatement += "DISTINCT ";
aStatement += quoteName(aQuote,aFieldName);
if (!aBoundFieldName.isEmpty())
{
- aStatement += OUString(", ");
+ aStatement += ", ";
aStatement += quoteName(aQuote, aBoundFieldName);
}
- aStatement += OUString(" FROM ");
+ aStatement += " FROM ";
OUString sCatalog, sSchema, sTable;
qualifiedNameComponents( xMeta, sListSource, sCatalog, sSchema, sTable, eInDataManipulation );