summaryrefslogtreecommitdiff
path: root/desktop/source/splash
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-07-30 17:56:23 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-07-31 12:59:38 +0200
commitfd912a3db4329ce882c78f10a4dbbc4d43601118 (patch)
tree9b4c562ae725789a60ce779996a3ffc9b17ecace /desktop/source/splash
parent62e15f22e4a7f23837d1c4ea8f1e79d0d7970308 (diff)
Improved loplugin:stringconstant (now that GCC 7 supports it): desktop
Change-Id: Ieefdb08d6b92a0d70ecd9188f318e1738d61d803 Reviewed-on: https://gerrit.libreoffice.org/76685 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'desktop/source/splash')
-rw-r--r--desktop/source/splash/splash.cxx2
-rw-r--r--desktop/source/splash/unxsplash.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/splash/splash.cxx b/desktop/source/splash/splash.cxx
index 39d67725695b..b5b3568e12e3 100644
--- a/desktop/source/splash/splash.cxx
+++ b/desktop/source/splash/splash.cxx
@@ -641,7 +641,7 @@ css::uno::Reference< css::uno::XInterface > desktop::splash::create(
}
OUString desktop::splash::getImplementationName() {
- return OUString("com.sun.star.office.comp.SplashScreen");
+ return "com.sun.star.office.comp.SplashScreen";
}
css::uno::Sequence< OUString > desktop::splash::getSupportedServiceNames()
diff --git a/desktop/source/splash/unxsplash.cxx b/desktop/source/splash/unxsplash.cxx
index 0cc948ee121b..b068cfa28e5c 100644
--- a/desktop/source/splash/unxsplash.cxx
+++ b/desktop/source/splash/unxsplash.cxx
@@ -140,7 +140,7 @@ uno::Reference< uno::XInterface > UnxSplash_createInstance(const uno::Reference<
OUString UnxSplash_getImplementationName()
{
- return OUString( "com.sun.star.office.comp.PipeSplashScreen" );
+ return "com.sun.star.office.comp.PipeSplashScreen";
}
uno::Sequence< OUString > UnxSplash_getSupportedServiceNames() throw()