summaryrefslogtreecommitdiff
path: root/extensions/source/dbpilots
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-04 11:55:50 +0200
committerNoel Grandin <noel@peralex.com>2013-11-11 11:21:23 +0200
commit22435a0777d6048757855f7f30b04fb8e5523fb2 (patch)
tree2a8e66dbfca50cfee05739cf799f94b00774340d /extensions/source/dbpilots
parent957f8e02c29bc4df2f37f2a933957490cdf831f6 (diff)
remove unnecessary use of OUString constructor in EXTENSIONS module
Change-Id: Idf73eb831f52d4d74e6fbb6ea27f59ebbfd13a8c
Diffstat (limited to 'extensions/source/dbpilots')
-rw-r--r--extensions/source/dbpilots/wizardservices.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/dbpilots/wizardservices.cxx b/extensions/source/dbpilots/wizardservices.cxx
index c9cd98be6672..abb0dcd94496 100644
--- a/extensions/source/dbpilots/wizardservices.cxx
+++ b/extensions/source/dbpilots/wizardservices.cxx
@@ -66,7 +66,7 @@ namespace dbp
Sequence< OUString > OGroupBoxSI::getServiceNames() const
{
Sequence< OUString > aReturn(1);
- aReturn[0] = OUString("com.sun.star.sdb.GroupBoxAutoPilot");
+ aReturn[0] = "com.sun.star.sdb.GroupBoxAutoPilot";
return aReturn;
}
@@ -83,7 +83,7 @@ namespace dbp
Sequence< OUString > OListComboSI::getServiceNames() const
{
Sequence< OUString > aReturn(1);
- aReturn[0] = OUString("com.sun.star.sdb.ListComboBoxAutoPilot");
+ aReturn[0] = "com.sun.star.sdb.ListComboBoxAutoPilot";
return aReturn;
}
@@ -100,7 +100,7 @@ namespace dbp
Sequence< OUString > OGridSI::getServiceNames() const
{
Sequence< OUString > aReturn(1);
- aReturn[0] = OUString("com.sun.star.sdb.GridControlAutoPilot");
+ aReturn[0] = "com.sun.star.sdb.GridControlAutoPilot";
return aReturn;
}