diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 20:42:14 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 20:42:14 +0900 |
commit | 49d199ca45a47d31b52856437084c0a6810c8175 (patch) | |
tree | 1df8153c890caaad8bf0e1bf1b7800828bf0db5f | |
parent | accc1950c401e9ea84ceee05da3922d1c7f85515 (diff) | |
download | digikam-49d199ca45a47d31b52856437084c0a6810c8175.tar.gz digikam-49d199ca45a47d31b52856437084c0a6810c8175.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | digikam/digikam/albumiconviewfilter.cpp | 2 | ||||
-rw-r--r-- | 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 6d14616f..27f697c5 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<TQMouseEvent*>(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 bf8880c0..ee8d388c 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<TQMouseEvent*>(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<TQMouseEvent*>(e); if ( !widget->rect().contains(event->pos()) ) { hide(); |