From 435e78e93e441d905fa8d3e4564a9276a416c553 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Mon, 1 Mar 2010 17:58:37 +0000 Subject: [PATCH] add the standard config pages in the AppletScript fallback method for showing the configuration svn path=/branches/KDE/4.4/kdelibs/; revision=1097584 --- scripting/appletscript.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripting/appletscript.cpp b/scripting/appletscript.cpp index 1e5ade563..38e17ba5c 100644 --- a/scripting/appletscript.cpp +++ b/scripting/appletscript.cpp @@ -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(); } }