summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/source/backends/desktopbe/desktopbackend.cxx9
1 files changed, 3 insertions, 6 deletions
diff --git a/shell/source/backends/desktopbe/desktopbackend.cxx b/shell/source/backends/desktopbe/desktopbackend.cxx
index 146360220998..d8527f906da5 100644
--- a/shell/source/backends/desktopbe/desktopbackend.cxx
+++ b/shell/source/backends/desktopbe/desktopbackend.cxx
@@ -212,18 +212,15 @@ css::uno::Reference< css::uno::XInterface > SAL_CALL createInstance(
if ( desktop == "GNOME" ) {
backend = createBackend(
context,
- OUString(
- "com.sun.star.configuration.backend.GconfBackend"));
+ "com.sun.star.configuration.backend.GconfBackend");
} else if ( desktop == "KDE" ) {
backend = createBackend(
context,
- OUString(
- "com.sun.star.configuration.backend.KDEBackend"));
+ "com.sun.star.configuration.backend.KDEBackend");
} else if ( desktop == "KDE4" ) {
backend = createBackend(
context,
- OUString(
- "com.sun.star.configuration.backend.KDE4Backend"));
+ "com.sun.star.configuration.backend.KDE4Backend");
}
return backend.is()
? backend : static_cast< cppu::OWeakObject * >(new Default);