diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-07-22 09:13:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-07-22 09:51:31 +0100 |
commit | 7eed51d0332e16f97789ac638246d6d891348fd9 (patch) | |
tree | 141eceba822a8e9e28f58ca0b5b091332d7fb7cc /shell/source/backends/desktopbe/desktopbackend.cxx | |
parent | 8eab200e4029bcaf1d919c7338c635a2a526d695 (diff) |
There is no css.configuration.backend.GconfBackend
since
commit 3cf557c12d27f1b2250e69a543136da098112d80
Author: Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
Date: Fri Oct 16 12:15:55 2015 +0100
drop gconf integration as per ESC decision
Conflicts:
shell/source/backends/gconfbe/gconfbackend.cxx
Change-Id: If8e9b273e410250b45d3f645f6a31c1e80f02c6c
Diffstat (limited to 'shell/source/backends/desktopbe/desktopbackend.cxx')
-rw-r--r-- | shell/source/backends/desktopbe/desktopbackend.cxx | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/shell/source/backends/desktopbe/desktopbackend.cxx b/shell/source/backends/desktopbe/desktopbackend.cxx index 745d96dab759..64f06a387f88 100644 --- a/shell/source/backends/desktopbe/desktopbackend.cxx +++ b/shell/source/backends/desktopbe/desktopbackend.cxx @@ -209,11 +209,7 @@ css::uno::Reference< css::uno::XInterface > SAL_CALL createInstance( // Fall back to the default if the specific backend is not available: css::uno::Reference< css::uno::XInterface > backend; - if ( desktop == "GNOME" ) { - backend = createBackend( - context, - "com.sun.star.configuration.backend.GconfBackend"); - } else if ( desktop == "KDE" ) { + if ( desktop == "KDE" ) { backend = createBackend( context, "com.sun.star.configuration.backend.KDEBackend"); |