summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-04-20 17:42:14 +0200
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-04-23 20:24:39 +0000
commit51cd3b8090c52cab0931e0ab8fab1d83ef914b1e (patch)
tree89a3cccdf4c574d3f8c01546dfebd4087945d378
parentf6abc01c1daa05d19d1538ca1fae751c5e9b907e (diff)
Disable gcc warnings by adding pragmas and re-enable headersclean.v5.5.0-beta1
- IAxServerBase inherits IUnknown which does not have a virtual destructor. - QAxFactory::metaObject(const QString &) hides QObject::metaObject() (false positive). Task-number: QTBUG-45666 Change-Id: I8d1e69903ba6edde84ae9d4b64ee2e6088efad8b Reviewed-by: Andy Shaw <andy.shaw@digia.com>
-rw-r--r--src/activeqt/axshared.prx2
-rw-r--r--src/activeqt/control/qaxfactory.h3
-rw-r--r--src/activeqt/shared/qaxtypefunctions.h3
3 files changed, 6 insertions, 2 deletions
diff --git a/src/activeqt/axshared.prx b/src/activeqt/axshared.prx
index 2964354..6d335e9 100644
--- a/src/activeqt/axshared.prx
+++ b/src/activeqt/axshared.prx
@@ -18,8 +18,6 @@ SOURCES = \
shared/qaxtypefunctions.cpp \
shared/qaxutils.cpp
-mingw: HEADERSCLEAN_EXCLUDE += shared/qaxtypefunctions.h shared/qaxtypes.h control/qaxfactory.h
-
MODULE = axbase
load(qt_module)
QMAKE_DOCS_TARGETDIR = # Make qt_docs.prf default to activeqt instead of qtaxbase
diff --git a/src/activeqt/control/qaxfactory.h b/src/activeqt/control/qaxfactory.h
index 533ffc5..ac7a9e9 100644
--- a/src/activeqt/control/qaxfactory.h
+++ b/src/activeqt/control/qaxfactory.h
@@ -51,6 +51,8 @@ struct IUnknown;
struct IDispatch;
QT_BEGIN_NAMESPACE
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_GCC("-Woverloaded-virtual") // gcc complains about QObject::metaObject() being hidden.
class QWidget;
class QSettings;
@@ -288,6 +290,7 @@ public:
} \
QT_END_NAMESPACE
+QT_WARNING_POP
QT_END_NAMESPACE
#ifndef Q_COM_METATYPE_DECLARED
diff --git a/src/activeqt/shared/qaxtypefunctions.h b/src/activeqt/shared/qaxtypefunctions.h
index a3efa61..74dfc89 100644
--- a/src/activeqt/shared/qaxtypefunctions.h
+++ b/src/activeqt/shared/qaxtypefunctions.h
@@ -48,6 +48,8 @@
#include <QtCore/qvariant.h>
QT_BEGIN_NAMESPACE
+QT_WARNING_PUSH
+QT_WARNING_DISABLE_GCC("-Wnon-virtual-dtor") // gcc complains about IAxServerBase inheriting IUnknown with non virtual destructor.
extern GUID IID_IAxServerBase;
struct IAxServerBase : public IUnknown
@@ -81,6 +83,7 @@ extern void clearVARIANT(VARIANT *var);
#define QAX_INPROC_SERVER (0x51540001)
#define QAX_OUTPROC_SERVER (0x51540002)
+QT_WARNING_POP
QT_END_NAMESPACE
#endif // QAXTYPEFUNCTIONS_P_H