From 13dffe786685fa10441658ac7010583c3391069b Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Sun, 12 Sep 2010 21:15:13 +0000 Subject: [PATCH] correct theme loading svn path=/trunk/KDE/kdebase/runtime/; revision=1174584 --- kpart/plasmakpart.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kpart/plasmakpart.cpp b/kpart/plasmakpart.cpp index c8a88f54a..8f0a32139 100644 --- a/kpart/plasmakpart.cpp +++ b/kpart/plasmakpart.cpp @@ -83,8 +83,8 @@ PlasmaKPart::~PlasmaKPart() void PlasmaKPart::setThemeDefaults() { - KConfigGroup cg(KSharedConfig::openConfig("plasmarc"), "Theme-plasma-netbook" ); - const QString themeName = cg.readEntry("name", "air" ); + KConfigGroup cg(KSharedConfig::openConfig("plasmarc"), "Theme-plasma-kpart" ); + const QString themeName = cg.readEntry("name", "default"); Plasma::Theme::defaultTheme()->setUseGlobalSettings(false); Plasma::Theme::defaultTheme()->setThemeName(themeName);