summaryrefslogtreecommitdiffstats
path: root/src/quick3d/quick3dinput/items/quick3daction.cpp
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2022-12-19 12:23:17 +0100
committerPaul Lemire <paul.lemire@kdab.com>2023-02-10 12:37:17 +0100
commitc889af388062bbee6e52e68a22ac8632fb12ff02 (patch)
tree0b4823adb8ca383e0a55fcbeb6e262363c42e0e8 /src/quick3d/quick3dinput/items/quick3daction.cpp
parent390f724912eb73461295e68535e053eb27e28af9 (diff)
Remove Qt6 QT_VERSION checks from the code base
Those are left overs from the Qt 5.15 to Qt 6 port. Now that both code based have diverged, there's no much point in keeping those checks. Pick-to: 6.5 Change-Id: I4e83876b6b4cb18b181af32e376f4411054a1183 Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'src/quick3d/quick3dinput/items/quick3daction.cpp')
-rw-r--r--src/quick3d/quick3dinput/items/quick3daction.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/quick3d/quick3dinput/items/quick3daction.cpp b/src/quick3d/quick3dinput/items/quick3daction.cpp
index bb6e89e69..9bc23e194 100644
--- a/src/quick3d/quick3dinput/items/quick3daction.cpp
+++ b/src/quick3d/quick3dinput/items/quick3daction.cpp
@@ -16,12 +16,7 @@ Quick3DAction::Quick3DAction(QObject *parent)
QQmlListProperty<QAbstractActionInput> Quick3DAction::qmlActionInputs()
{
-#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
using qt_size_type = qsizetype;
-#else
- using qt_size_type = int;
-#endif
-
auto appendFunction = [](QQmlListProperty<QAbstractActionInput> *list, QAbstractActionInput *input) {
Quick3DAction *action = qobject_cast<Quick3DAction *>(list->object);
action->parentAction()->addInput(input);