summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 20:42:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 20:42:14 +0900
commit49d199ca45a47d31b52856437084c0a6810c8175 (patch)
tree1df8153c890caaad8bf0e1bf1b7800828bf0db5f
parentaccc1950c401e9ea84ceee05da3922d1c7f85515 (diff)
downloaddigikam-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.cpp2
-rw-r--r--digikam/libs/widgets/common/dcursortracker.cpp4
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<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 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<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();