From 7d428058d36ca10dc4ba7cbf673578b238717257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Tue, 11 Nov 2008 16:31:24 +0000 Subject: [PATCH] Mark hide() explicitly as a slot, since it's not virtual with Qt4. Patch by "qiang zhang" . svn path=/trunk/KDE/kdebase/workspace/; revision=882915 --- popupinfo.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/popupinfo.h b/popupinfo.h index 050853006e..c05aae6290 100644 --- a/popupinfo.h +++ b/popupinfo.h @@ -38,11 +38,13 @@ class PopupInfo : public QWidget ~PopupInfo(); void reset(); - void hide(); void showInfo(const QString &infoString); void reconfigure(); + public slots: + void hide(); + protected: void paintEvent( QPaintEvent* ); void paintContents();