From e817ea81f51b0b1f72f72c2a24f8af1b02a830b9 Mon Sep 17 00:00:00 2001 From: "Aaron J. Seigo" Date: Wed, 21 Jan 2009 06:17:23 +0000 Subject: [PATCH] woah, can't believe i didn't catch this one... another day later and it would've been ABI disaster! ;) svn path=/trunk/KDE/kdelibs/; revision=914446 --- applet.h | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/applet.h b/applet.h index 2bc215b75..5f4ad714b 100644 --- a/applet.h +++ b/applet.h @@ -565,6 +565,16 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget */ bool destroyed() const; + /** + * Reimplement this method so provide a configuration interface, + * parented to the supplied widget. Ownership of the widgets is passed + * to the parent widget. + * + * @param parent the dialog which is the parent of the configuration + * widgets + */ + virtual void createConfigurationInterface(KConfigDialog *parent); + Q_SIGNALS: /** * This signal indicates that an application launch, window @@ -729,16 +739,6 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget */ void setConfigurationRequired(bool needsConfiguring, const QString &reason = QString()); - /** - * Reimplement this method so provide a configuration interface, - * parented to the supplied widget. Ownership of the widgets is passed - * to the parent widget. - * - * @param parent the dialog which is the parent of the configuration - * widgets - */ - virtual void createConfigurationInterface(KConfigDialog *parent); - /** * Called when any of the geometry constraints have been updated. * @@ -777,7 +777,6 @@ class PLASMA_EXPORT Applet : public QGraphicsWidget */ bool isRegisteredAsDragHandle(QGraphicsItem *item); - /** * @return the extender of this applet. */