summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/imports/calendar/qquickmonthgrid.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/imports/calendar/qquickmonthgrid.cpp b/src/imports/calendar/qquickmonthgrid.cpp
index 519c15c..7668611 100644
--- a/src/imports/calendar/qquickmonthgrid.cpp
+++ b/src/imports/calendar/qquickmonthgrid.cpp
@@ -108,7 +108,7 @@ public:
void updatePress(const QPointF &pos);
void clearPress(bool clicked);
-#if QT_VERSION > QT_VERSION_CHECK(6, 2, 0)
+#if QT_VERSION >= QT_VERSION_CHECK(6, 3, 0)
void handlePress(const QPointF &point, ulong timestamp) override;
void handleMove(const QPointF &point, ulong timestamp) override;
void handleRelease(const QPointF &point, ulong timestamp) override;
@@ -187,7 +187,7 @@ void QQuickMonthGridPrivate::clearPress(bool clicked)
pressedItem = nullptr;
}
-#if QT_VERSION > QT_VERSION_CHECK(6, 2, 0)
+#if QT_VERSION >= QT_VERSION_CHECK(6, 3, 0)
void QQuickMonthGridPrivate::handlePress(const QPointF &point, ulong timestamp)
{
Q_Q(QQuickMonthGrid);
@@ -203,7 +203,7 @@ void QQuickMonthGridPrivate::handlePress(const QPointF &point)
pressTimer = q->startTimer(qGuiApp->styleHints()->mousePressAndHoldInterval());
}
-#if QT_VERSION > QT_VERSION_CHECK(6, 2, 0)
+#if QT_VERSION >= QT_VERSION_CHECK(6, 3, 0)
void QQuickMonthGridPrivate::handleMove(const QPointF &point, ulong timestamp)
{
QQuickControlPrivate::handleMove(point, timestamp);
@@ -215,7 +215,7 @@ void QQuickMonthGridPrivate::handleMove(const QPointF &point)
updatePress(point);
}
-#if QT_VERSION > QT_VERSION_CHECK(6, 2, 0)
+#if QT_VERSION >= QT_VERSION_CHECK(6, 3, 0)
void QQuickMonthGridPrivate::handleRelease(const QPointF &point, ulong timestamp)
{
QQuickControlPrivate::handleRelease(point, timestamp);