summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qguivariant.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/kernel/qguivariant.cpp')
-rw-r--r--src/gui/kernel/qguivariant.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/kernel/qguivariant.cpp b/src/gui/kernel/qguivariant.cpp
index 2bb7524ab9..78d431f9bd 100644
--- a/src/gui/kernel/qguivariant.cpp
+++ b/src/gui/kernel/qguivariant.cpp
@@ -549,6 +549,7 @@ Q_DECL_METATYPE_HELPER(QVector4D)
#ifndef QT_NO_QUATERNION
Q_DECL_METATYPE_HELPER(QQuaternion)
#endif
+Q_DECL_METATYPE_HELPER(QPolygonF)
#ifdef QT_NO_DATASTREAM
# define Q_IMPL_METATYPE_HELPER(TYPE) \
@@ -616,10 +617,11 @@ static const QMetaTypeGuiHelper qVariantGuiHelper[] = {
{0, 0, 0, 0, 0, 0, 0},
#endif
#ifndef QT_NO_QUATERNION
- Q_IMPL_METATYPE_HELPER(QQuaternion)
+ Q_IMPL_METATYPE_HELPER(QQuaternion),
#else
- {0, 0, 0, 0, 0, 0, 0}
+ {0, 0, 0, 0, 0, 0, 0},
#endif
+ Q_IMPL_METATYPE_HELPER(QPolygonF)
};
static const QVariant::Handler *qt_guivariant_last_handler = 0;