From ddcc35a4b1cb5de03a552cbd89a794c4998703f5 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Nov 2023 21:29:50 +0900 Subject: Replace 'Event' #define strings Signed-off-by: Michele Calgaro --- noatun-plugins/alsaplayer/userinterface.cpp | 4 ++-- noatun-plugins/charlatan/userinterface.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'noatun-plugins') diff --git a/noatun-plugins/alsaplayer/userinterface.cpp b/noatun-plugins/alsaplayer/userinterface.cpp index cbd6598..4745e1f 100644 --- a/noatun-plugins/alsaplayer/userinterface.cpp +++ b/noatun-plugins/alsaplayer/userinterface.cpp @@ -223,11 +223,11 @@ bool AlsaPlayer::eventFilter(TQObject *o, TQEvent *e) switch (e->type()) { case TQEvent::MouseButtonPress: - mousePressEvent(TQT_TQMOUSEEVENT(e)); + mousePressEvent(static_cast(e)); break; case TQEvent::Wheel: - wheelEvent(TQT_TQWHEELEVENT(e)); + wheelEvent(static_cast(e)); return true; break; diff --git a/noatun-plugins/charlatan/userinterface.cpp b/noatun-plugins/charlatan/userinterface.cpp index 88314d5..f673fb1 100644 --- a/noatun-plugins/charlatan/userinterface.cpp +++ b/noatun-plugins/charlatan/userinterface.cpp @@ -321,7 +321,7 @@ bool Charlatan::eventFilter(TQObject *o, TQEvent *e) switch (e->type()) { case TQEvent::Wheel: - wheelEvent(TQT_TQWHEELEVENT(e)); + wheelEvent(static_cast(e)); return true; break; -- cgit v1.2.1