summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/browser/sbagrid.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/browser/sbagrid.cxx
parent3e70dda33548a5392baaf99a3c4675285de7da46 (diff)
remove unnecessary use of OUString constructor in DBACCESS module
Change-Id: I831a6506211be30c5b743c20724904c903c5b3c0
Diffstat (limited to 'dbaccess/source/ui/browser/sbagrid.cxx')
-rw-r--r--dbaccess/source/ui/browser/sbagrid.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/ui/browser/sbagrid.cxx b/dbaccess/source/ui/browser/sbagrid.cxx
index 31d990b6425c..a98fd401cdcf 100644
--- a/dbaccess/source/ui/browser/sbagrid.cxx
+++ b/dbaccess/source/ui/browser/sbagrid.cxx
@@ -130,9 +130,9 @@ OUString SbaXGridControl::getImplementationName_Static() throw( RuntimeException
Sequence< OUString> SbaXGridControl::getSupportedServiceNames_Static(void) throw( RuntimeException )
{
Sequence< OUString> aSupported(3);
- aSupported[0] = OUString("com.sun.star.form.control.InteractionGridControl");
- aSupported[1] = OUString("com.sun.star.form.control.GridControl");
- aSupported[2] = OUString("com.sun.star.awt.UnoControl");
+ aSupported[0] = "com.sun.star.form.control.InteractionGridControl";
+ aSupported[1] = "com.sun.star.form.control.GridControl";
+ aSupported[2] = "com.sun.star.awt.UnoControl";
return aSupported;
}