From 9234ac63e9224508f588ef88c16f1bb9afca9d8f Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Tue, 29 Apr 2008 02:35:56 +0000 Subject: [PATCH] this method should also be protected svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=802289 --- applet.h | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/applet.h b/applet.h index 6217baf5a..ee844bf6a 100644 --- a/applet.h +++ b/applet.h @@ -397,20 +397,6 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget */ bool configurationRequired() const; - /** - * When the applet needs to be configured before being usable, this - * method can be called to show a standard interface prompting the user - * to configure the applet - * - * Not that all children items will be deleted when this method is - * called. If you have pointers to these items, you will need to - * reset them after calling this method. - * - * @param needsConfiguring true if the applet needs to be configured, - * or false if it doesn't - */ - void setConfigurationRequired(bool needsConfiguring); - /** * @return true if this plasmoid provides a GUI configuration **/ @@ -584,6 +570,20 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget **/ void setHasConfigurationInterface(bool hasInterface); + /** + * When the applet needs to be configured before being usable, this + * method can be called to show a standard interface prompting the user + * to configure the applet + * + * Not that all children items will be deleted when this method is + * called. If you have pointers to these items, you will need to + * reset them after calling this method. + * + * @param needsConfiguring true if the applet needs to be configured, + * or false if it doesn't + */ + void setConfigurationRequired(bool needsConfiguring); + /** * Reimplement this method so provide a configuration interface, * parented to the supplied widget. Ownership of the widgets is passed