From eb097744557234eaa6efacf5199023eaa04ed368 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Fri, 30 Mar 2018 10:25:43 +0200 Subject: [PATCH] Add Q_OBJECT to StatusBar and TipLabel Makes it possible to style them with style sheets. --- src/lib/other/statusbar.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/other/statusbar.h b/src/lib/other/statusbar.h index 6b0bf5077..68fad138b 100644 --- a/src/lib/other/statusbar.h +++ b/src/lib/other/statusbar.h @@ -30,6 +30,8 @@ class AbstractButtonInterface; class FALKON_EXPORT TipLabel : public SqueezeLabelV1 { + Q_OBJECT + public: explicit TipLabel(QWidget* parent); @@ -46,6 +48,8 @@ private: class FALKON_EXPORT StatusBar : public QStatusBar { + Q_OBJECT + public: explicit StatusBar(BrowserWindow *window);