Remove an unused variable

Pick-to: 6.5 6.6
Task-number: QTBUG-109394
Change-Id: Ib1099e3d4091b0b222e405ce25b5e680f0514476
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
This commit is contained in:
Amir Masoud Abdol 2023-05-11 15:57:15 +02:00
parent b738ad7e3a
commit 48014f99dc
2 changed files with 1 additions and 12 deletions

View File

@ -50,7 +50,7 @@ static inline int panTouchPoints()
#endif
QGestureManager::QGestureManager(QObject *parent)
: QObject(parent), state(NotGesture), m_lastCustomGestureId(Qt::CustomGesture)
: QObject(parent), m_lastCustomGestureId(Qt::CustomGesture)
{
qRegisterMetaType<Qt::GestureState>();

View File

@ -64,17 +64,6 @@ private:
QSet<QGesture *> m_activeGestures;
QSet<QGesture *> m_maybeGestures;
QT_WARNING_PUSH
QT_WARNING_DISABLE_GCC("-Wattributes")
[[maybe_unused]] enum State {
Gesture,
NotGesture,
MaybeGesture // this means timers are up and waiting for some
// more events, and input events are handled by
// gesture recognizer explicitly
} state;
QT_WARNING_POP
struct ObjectGesture
{
QObject* object;