the true default to setHasConfigurationInterface actually needs to call the setter method as that sets up the action

svn path=/trunk/KDE/kdelibs/; revision=913908
This commit is contained in:
Aaron J. Seigo 2009-01-20 03:12:08 +00:00
parent 9d262c3619
commit ce8a3e3ed7

View File

@ -1853,7 +1853,7 @@ AppletPrivate::AppletPrivate(KService::Ptr service, int uniqueID, Applet *applet
shortcutEditor(0),
constraintsTimerId(0),
modificationsTimerId(-1),
hasConfigurationInterface(true),
hasConfigurationInterface(false),
failed(false),
isContainment(false),
transient(false),
@ -1966,6 +1966,7 @@ void AppletPrivate::init()
}
q->setBackgroundHints(Applet::DefaultBackground);
q->setHasConfigurationInterface(true);
QObject::connect(Plasma::Theme::defaultTheme(), SIGNAL(themeChanged()), q, SLOT(themeChanged()));
}