From cac6198c2813009268773d0a1edf95a74efe2707 Mon Sep 17 00:00:00 2001 From: Bryant Date: Mon, 21 Jul 2014 23:35:10 -0700 Subject: [PATCH] A QObject needs to be the first parent of a class using the Q_OBJECT macro. --- libs/thirdParty/3DMouse/win/Mouse3DInput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/thirdParty/3DMouse/win/Mouse3DInput.h b/libs/thirdParty/3DMouse/win/Mouse3DInput.h index 0e5aebfbc..7fb1cd2ca 100644 --- a/libs/thirdParty/3DMouse/win/Mouse3DInput.h +++ b/libs/thirdParty/3DMouse/win/Mouse3DInput.h @@ -34,7 +34,7 @@ Qt is compiled for Win 2000 targets. */ -class Mouse3DInput : public QAbstractNativeEventFilter, public QObject +class Mouse3DInput : public QObject, public QAbstractNativeEventFilter { Q_OBJECT public: -- 2.22.0