summaryrefslogtreecommitdiffstats
path: root/klinkstatus/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:48:49 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-18 20:26:36 +0900
commit5b51c9fc784f692e2df23253181a618f94d0db73 (patch)
treee9100a0e8efdff5cc02df9f034553eaed5aebbfb /klinkstatus/src
parent6d4be82cca25be5191a287efca0ebaaa2777875e (diff)
downloadtdewebdev-5b51c9fc784f692e2df23253181a618f94d0db73.tar.gz
tdewebdev-5b51c9fc784f692e2df23253181a618f94d0db73.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8ac0be0f7fbc73ec137ed768ccc6a2e0f41ee2b9)
Diffstat (limited to 'klinkstatus/src')
-rw-r--r--klinkstatus/src/ui/klshistorycombo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/klinkstatus/src/ui/klshistorycombo.cpp b/klinkstatus/src/ui/klshistorycombo.cpp
index 52d884c8..68da2720 100644
--- a/klinkstatus/src/ui/klshistorycombo.cpp
+++ b/klinkstatus/src/ui/klshistorycombo.cpp
@@ -79,7 +79,7 @@ bool KLSHistoryCombo::eventFilter( TQObject *o, TQEvent *ev )
// Handle Ctrl+Del/Backspace etc better than the TQt widget, which always
// jumps to the next whitespace.
TQLineEdit *edit = lineEdit();
- if ( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(edit) )
+ if ( o == edit )
{
int type = ev->type();
if ( type == TQEvent::KeyPress )