summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-23 13:18:20 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2021-02-23 17:37:21 +0100
commit741dfc6966c3d08a9c8bca4c7d38c723e07f4999 (patch)
tree6c0314b007393ffa10dc75e440192995dd62bd82 /src
parent4448aed009784236f66067cc9ceecf5e86a640b5 (diff)
Fix API review finding
Move QAxObjectInterface::~QAxObjectInterface() to a source file. Pick-to: 6.1 Change-Id: I5b83fad9fe1c7571e1dcea5f0cb01b2fc95c3d31 Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/activeqt/container/qaxobject.cpp2
-rw-r--r--src/activeqt/container/qaxobjectinterface.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/activeqt/container/qaxobject.cpp b/src/activeqt/container/qaxobject.cpp
index adce2a2..08263e3 100644
--- a/src/activeqt/container/qaxobject.cpp
+++ b/src/activeqt/container/qaxobject.cpp
@@ -60,6 +60,8 @@
QT_BEGIN_NAMESPACE
+QAxObjectInterface::~QAxObjectInterface() = default;
+
QAxBaseObject::QAxBaseObject(QObjectPrivate &d, QObject *parent)
: QObject(d, parent)
{
diff --git a/src/activeqt/container/qaxobjectinterface.h b/src/activeqt/container/qaxobjectinterface.h
index 566befa..2b05656 100644
--- a/src/activeqt/container/qaxobjectinterface.h
+++ b/src/activeqt/container/qaxobjectinterface.h
@@ -60,7 +60,7 @@ class QString;
class QAxObjectInterface
{
public:
- virtual ~QAxObjectInterface() = default;
+ virtual ~QAxObjectInterface();
virtual ulong classContext() const = 0;
virtual void setClassContext(ulong classContext) = 0;