summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 13:33:17 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:24 +0200
commit3ef88d370e5b448c8c62a759ec073bb33a9f6965 (patch)
treed6f198f3ffa1573eb692f89214da685d2eb995bf /dbaccess/source/ui/querydesign/TableWindowAccess.cxx
parent3e70dda33548a5392baaf99a3c4675285de7da46 (diff)
remove unnecessary use of OUString constructor in DBACCESS module
Change-Id: I831a6506211be30c5b743c20724904c903c5b3c0
Diffstat (limited to 'dbaccess/source/ui/querydesign/TableWindowAccess.cxx')
-rw-r--r--dbaccess/source/ui/querydesign/TableWindowAccess.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/TableWindowAccess.cxx b/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
index c2c497973f8a..8aaa06c94a21 100644
--- a/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
+++ b/dbaccess/source/ui/querydesign/TableWindowAccess.cxx
@@ -80,8 +80,8 @@ namespace dbaui
Sequence< OUString > OTableWindowAccess::getSupportedServiceNames_Static(void) throw( RuntimeException )
{
Sequence< OUString > aSupported(2);
- aSupported[0] = OUString("com.sun.star.accessibility.Accessible");
- aSupported[1] = OUString("com.sun.star.accessibility.AccessibleContext");
+ aSupported[0] = "com.sun.star.accessibility.Accessible";
+ aSupported[1] = "com.sun.star.accessibility.AccessibleContext";
return aSupported;
}
OUString OTableWindowAccess::getImplementationName_Static(void) throw( RuntimeException )