summaryrefslogtreecommitdiffstats
path: root/src/kcolorcombo2.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-08-08 12:18:38 +0900
committerMichele Calgaro <[email protected]>2023-08-08 12:18:38 +0900
commit809cae7dcd9211781f6671f121c552dc3d5061b3 (patch)
tree11358aacb26348b0802bbf44eb201331ea84dd96 /src/kcolorcombo2.cpp
parentaf97112a1a1c815e48080046e495510f41507206 (diff)
downloadbasket-809cae7dcd9211781f6671f121c552dc3d5061b3.tar.gz
basket-809cae7dcd9211781f6671f121c552dc3d5061b3.zip
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kcolorcombo2.cpp')
-rw-r--r--src/kcolorcombo2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kcolorcombo2.cpp b/src/kcolorcombo2.cpp
index 54a8b98..345fc8f 100644
--- a/src/kcolorcombo2.cpp
+++ b/src/kcolorcombo2.cpp
@@ -685,7 +685,7 @@ bool KColorCombo2::eventFilter(TQObject */*object*/, TQEvent *event)
case TQEvent::MouseButtonDblClick:
case TQEvent::MouseButtonPress:
mouseEvent = (TQMouseEvent*)event;
- if ( !TQT_TQRECT_OBJECT(m_popup->rect()).contains(mouseEvent->pos()) ) {
+ if ( !m_popup->rect().contains(mouseEvent->pos()) ) {
TQPoint globalPos = m_popup->mapToGlobal(mouseEvent->pos());
if (TQApplication::widgetAt(globalPos, /*child=*/true) == this) {
// The popup is being closed by a click on the KColorCombo2 widget.