add the standard config pages in the AppletScript fallback method for showing the configuration

svn path=/branches/KDE/4.4/kdelibs/; revision=1097584
This commit is contained in:
Aaron J. Seigo 2010-03-01 17:58:37 +00:00
parent 25051aa104
commit 435e78e93e

View File

@ -127,7 +127,9 @@ void AppletScript::configNeedsSaving() const
void AppletScript::showConfigurationInterface()
{
if (applet()) {
applet()->d->generateGenericConfigDialog()->show();
KConfigDialog *dialog = applet()->d->generateGenericConfigDialog();
applet()->d->addStandardConfigurationPages(dialog);
dialog->show();
}
}