From 49d199ca45a47d31b52856437084c0a6810c8175 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Nov 2023 20:42:14 +0900 Subject: [PATCH] Replace 'Event' #define strings Signed-off-by: Michele Calgaro --- digikam/digikam/albumiconviewfilter.cpp | 2 +- digikam/libs/widgets/common/dcursortracker.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/digikam/digikam/albumiconviewfilter.cpp b/digikam/digikam/albumiconviewfilter.cpp index 6d14616..27f697c 100644 --- a/digikam/digikam/albumiconviewfilter.cpp +++ b/digikam/digikam/albumiconviewfilter.cpp @@ -190,7 +190,7 @@ bool AlbumIconViewFilter::eventFilter(TQObject *object, TQEvent *e) if (e->type() == TQEvent::MouseButtonRelease) { - TQMouseEvent* event = TQT_TQMOUSEEVENT(e); + TQMouseEvent* event = static_cast(e); if ( widget->rect().contains(event->pos()) && d->led->ledColor() != StatusLed::Gray) { // Reset all filters settings. diff --git a/digikam/libs/widgets/common/dcursortracker.cpp b/digikam/libs/widgets/common/dcursortracker.cpp index bf8880c..ee8d388 100644 --- a/digikam/libs/widgets/common/dcursortracker.cpp +++ b/digikam/libs/widgets/common/dcursortracker.cpp @@ -64,7 +64,7 @@ bool DCursorTracker::eventFilter(TQObject *object, TQEvent *e) { case TQEvent::MouseMove: { - TQMouseEvent *event = TQT_TQMOUSEEVENT(e); + TQMouseEvent *event = static_cast(e); if (m_enable && (widget->rect().contains(event->pos()) || (event->stateAfter() & TQt::LeftButton))) { @@ -81,7 +81,7 @@ bool DCursorTracker::eventFilter(TQObject *object, TQEvent *e) case TQEvent::MouseButtonRelease: { - TQMouseEvent* event = TQT_TQMOUSEEVENT(e); + TQMouseEvent* event = static_cast(e); if ( !widget->rect().contains(event->pos()) ) { hide();