summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-08 12:21:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-08 12:21:49 +0900
commit172024abe61897349878c7421cfd99a8d2aa957a (patch)
tree54a103eac7590da8eb77ac7eb38f885f639be787
parent678ee0d63590ba7bf1cad32070c229d699617a3c (diff)
downloadtdemultimedia-172024ab.tar.gz
tdemultimedia-172024ab.zip
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--juk/systemtray.cpp2
-rw-r--r--noatun/modules/winskin/waButton.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/juk/systemtray.cpp b/juk/systemtray.cpp
index 577817b9..85abc339 100644
--- a/juk/systemtray.cpp
+++ b/juk/systemtray.cpp
@@ -577,7 +577,7 @@ void SystemTray::mousePressEvent(TQMouseEvent *e)
KSystemTray::mousePressEvent(e);
break;
case Qt::MidButton:
- if(!TQT_TQRECT_OBJECT(rect()).contains(e->pos()))
+ if(!rect().contains(e->pos()))
return;
if(action("pause")->isEnabled())
action("pause")->activate();
diff --git a/noatun/modules/winskin/waButton.cpp b/noatun/modules/winskin/waButton.cpp
index 8dfa7bfb..6ecf4050 100644
--- a/noatun/modules/winskin/waButton.cpp
+++ b/noatun/modules/winskin/waButton.cpp
@@ -68,7 +68,7 @@ void WaButton::mouseReleaseEvent(TQMouseEvent* e) {
else {
pressed = false;
- if (TQT_TQRECT_OBJECT(this->rect()).contains(e->pos())){
+ if (this->rect().contains(e->pos())){
if (_togglable) {
_toggled = !_toggled;
emit(toggleEvent(_toggled));