summaryrefslogtreecommitdiffstats
path: root/tdeio/tdefile/kcombiview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:47:26 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-18 17:09:32 +0900
commit09e466f879ed6e5b17980110eec2cc8db1b4f914 (patch)
treecbe99eab52f3be3b60af8104d9809da63f9ab6f2 /tdeio/tdefile/kcombiview.cpp
parent34a191d96f3f9223b8c71da76ad6d8f3c2c9863d (diff)
downloadtdelibs-09e466f8.tar.gz
tdelibs-09e466f8.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 48b07a0ff120e8b4479bcac912d8a8f043e22ae4)
Diffstat (limited to 'tdeio/tdefile/kcombiview.cpp')
-rw-r--r--tdeio/tdefile/kcombiview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeio/tdefile/kcombiview.cpp b/tdeio/tdefile/kcombiview.cpp
index 4c4f0cb06..23c78b53d 100644
--- a/tdeio/tdefile/kcombiview.cpp
+++ b/tdeio/tdefile/kcombiview.cpp
@@ -358,9 +358,9 @@ bool KCombiView::eventFilter( TQObject *o, TQEvent *e )
// only the focused view may have a selection
if ( type == TQEvent::FocusIn )
{
- if ( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(left) )
+ if ( o == left )
right->clearSelection();
- else if ( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(right->widget()) )
+ else if ( o == right->widget() )
left->clearSelection();
}