summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers/kab/KCatalog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/drivers/kab/KCatalog.cxx')
-rw-r--r--connectivity/source/drivers/kab/KCatalog.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/connectivity/source/drivers/kab/KCatalog.cxx b/connectivity/source/drivers/kab/KCatalog.cxx
index de5be71cdc23..fb6e330fac6a 100644
--- a/connectivity/source/drivers/kab/KCatalog.cxx
+++ b/connectivity/source/drivers/kab/KCatalog.cxx
@@ -42,18 +42,18 @@ KabCatalog::KabCatalog(KabConnection* _pCon)
void KabCatalog::refreshTables()
{
TStringVector aVector;
- Sequence< ::rtl::OUString > aTypes(1);
- aTypes[0] = ::rtl::OUString("%");
+ Sequence< OUString > aTypes(1);
+ aTypes[0] = OUString("%");
Reference< XResultSet > xResult = m_xMetaData->getTables(
Any(),
- ::rtl::OUString("%"),
- ::rtl::OUString("%"),
+ OUString("%"),
+ OUString("%"),
aTypes);
if (xResult.is())
{
Reference< XRow > xRow(xResult,UNO_QUERY);
- ::rtl::OUString aName;
+ OUString aName;
while (xResult->next())
{