From 58a54c50fb735254c3b284c0421e953e45560b0f Mon Sep 17 00:00:00 2001 From: laserpants Date: Sun, 27 Mar 2016 10:11:32 +0300 Subject: [PATCH] put Q_DECL_OVERRIDE pragma in correct place --- components/slider.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/slider.h b/components/slider.h index e073376..f9bdb40 100644 --- a/components/slider.h +++ b/components/slider.h @@ -14,8 +14,7 @@ public: explicit Handle(Slider *slider); ~Handle(); - Q_DECL_OVERRIDE - inline QSize sizeHint() const { return QSize(16, 16); } + inline QSize sizeHint() const Q_DECL_OVERRIDE { return QSize(16, 16); } inline void setRelativePosition(const QPoint &pos) { setPosition(_offset + pos); }