From f9b6807bfba62faf28bddeb063e2e1fc58f648af Mon Sep 17 00:00:00 2001 From: Davide Bettio Date: Thu, 28 Aug 2008 18:32:51 +0000 Subject: [PATCH] moving popupEvent to protected... svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=854048 --- popupapplet.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/popupapplet.h b/popupapplet.h index c29eab617..986a36e01 100644 --- a/popupapplet.h +++ b/popupapplet.h @@ -88,12 +88,6 @@ public: */ void showPopup(uint displayTime = 0); - /** - * This event handler can be reimplemented in a subclass to receive an event before the popup is showed or hidden. - * @arg show true if the popup is going to be showed, false if the popup is going to be hiden. - */ - virtual void popupEvent(bool show); - public Q_SLOTS: /** * Hides the popup. @@ -109,6 +103,12 @@ public Q_SLOTS: protected: void constraintsEvent(Plasma::Constraints constraints); + /** + * This event handler can be reimplemented in a subclass to receive an event before the popup is showed or hidden. + * @arg show true if the popup is going to be showed, false if the popup is going to be hiden. + */ + virtual void popupEvent(bool show); + private: Q_PRIVATE_SLOT(d, void togglePopup()) Q_PRIVATE_SLOT(d, void hideTimedPopup())