aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/qqmlmetatype.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-07-07 13:30:22 +0200
committerFabian Kosmale <fabian.kosmale@qt.io>2020-07-15 20:53:23 +0200
commit2640a78404d39790548ead6c8c3bf3e9cc9d4b9c (patch)
tree622bcf00d70042f86e078fa7b7a009f2af4dacf6 /src/qml/qml/qqmlmetatype.cpp
parenteb1bd82f8357cdee875b9d3326b2281314656c4c (diff)
Adapt to new members in QMetaTypeInterface
Change-Id: If355b891651b77fcc4e0ad5cc5db789807b83c11 Reviewed-by: Shawn Rutledge <shawn.rutledge@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'src/qml/qml/qqmlmetatype.cpp')
-rw-r--r--src/qml/qml/qqmlmetatype.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qml/qml/qqmlmetatype.cpp b/src/qml/qml/qqmlmetatype.cpp
index 59108bca98..ad67b8abc0 100644
--- a/src/qml/qml/qqmlmetatype.cpp
+++ b/src/qml/qml/qqmlmetatype.cpp
@@ -569,6 +569,8 @@ struct QQmlMetaTypeInterface : QtPrivate::QMetaTypeInterface
/*.dtor=*/ [](const QMetaTypeInterface *, void *addr) {
reinterpret_cast<T *>(addr)->~T();
},
+ /*.equals*/ nullptr,
+ /*.lessThan*/ nullptr,
/*.legacyRegisterOp=*/ nullptr
}
, name(name) { }