From 0033cb5513aa799cb3ed2f263db44b3efe3571db Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Tue, 5 Mar 2013 16:10:45 +0100 Subject: [PATCH] port away from kglobal --- src/shell/view.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/shell/view.cpp b/src/shell/view.cpp index f6875baea..9e78e2846 100644 --- a/src/shell/view.cpp +++ b/src/shell/view.cpp @@ -24,7 +24,6 @@ #include #include "plasma/pluginloader.h" -#include View::View(Plasma::Corona *corona, QWindow *parent) : QQuickView(parent), @@ -52,7 +51,7 @@ KConfigGroup View::config() const if (!containment()) { return KConfigGroup(); } - KConfigGroup views(KGlobal::config(), "PlasmaViews"); + KConfigGroup views(KSharedConfig::openConfig(), "PlasmaViews"); return KConfigGroup(&views, QString::number(containment()->screen())); }