aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmltypeloader_p.h
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@digia.com>2012-09-23 19:21:03 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-09-24 11:57:16 +0200
commit2cfcd6e3f52f2eb949f11a8416131519c1bd6d8e (patch)
tree9ba72c7b934afda6e4f068dcc3b684c08fc21eeb /src/qml/qml/qqmltypeloader_p.h
parent16986c733e0cd1109a4e42cecd968bae37422f25 (diff)
Fixed missing virtual destructors in qtdeclarative.
Change-Id: I0b0e63b572617a56874e27361479de2690644aa3 Reviewed-by: Marc Mutz <marc.mutz@kdab.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/qml/qml/qqmltypeloader_p.h')
-rw-r--r--src/qml/qml/qqmltypeloader_p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/qml/qqmltypeloader_p.h b/src/qml/qml/qqmltypeloader_p.h
index 4cbfc282c1..bb2f29fd78 100644
--- a/src/qml/qml/qqmltypeloader_p.h
+++ b/src/qml/qml/qqmltypeloader_p.h
@@ -429,7 +429,7 @@ public:
// Used by QQmlComponent to get notifications
struct TypeDataCallback {
- ~TypeDataCallback() {}
+ virtual ~TypeDataCallback();
virtual void typeDataProgress(QQmlTypeData *, qreal) {}
virtual void typeDataReady(QQmlTypeData *) {}
};