aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/items/qquickevents_p_p.h
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@theqtcompany.com>2016-08-03 22:58:11 +0200
committerShawn Rutledge <shawn.rutledge@qt.io>2016-08-04 14:10:37 +0000
commitb07b41edb266a2a5d7cf83aa63e6eb1e69183ccd (patch)
treeeda31963d2abec2cb6770e71fbcb418d448761cb /src/quick/items/qquickevents_p_p.h
parent4ecd73fbed2afe71dc7302bafd595518a4779541 (diff)
Add missing Q_OBJECT macros
Change-Id: I5f58f53a10b11906c1f784f1cab96ec761d8d588 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io>
Diffstat (limited to 'src/quick/items/qquickevents_p_p.h')
-rw-r--r--src/quick/items/qquickevents_p_p.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/quick/items/qquickevents_p_p.h b/src/quick/items/qquickevents_p_p.h
index f3e6fdddff..6dee1f5b45 100644
--- a/src/quick/items/qquickevents_p_p.h
+++ b/src/quick/items/qquickevents_p_p.h
@@ -375,6 +375,7 @@ protected:
class Q_QUICK_PRIVATE_EXPORT QQuickPointerMouseEvent : public QQuickPointerEvent
{
+ Q_OBJECT
public:
QQuickPointerMouseEvent(QObject *parent = nullptr)
: QQuickPointerEvent(parent), m_mousePoint(new QQuickEventPoint(this)) { }
@@ -400,6 +401,7 @@ private:
class Q_QUICK_PRIVATE_EXPORT QQuickPointerTouchEvent : public QQuickPointerEvent
{
+ Q_OBJECT
public:
QQuickPointerTouchEvent(QObject *parent = nullptr)
: QQuickPointerEvent(parent), m_pointCount(0) { }