summaryrefslogtreecommitdiffstats
path: root/kate/plugins/isearch
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 /kate/plugins/isearch
parent34a191d96f3f9223b8c71da76ad6d8f3c2c9863d (diff)
downloadtdelibs-09e466f879ed6e5b17980110eec2cc8db1b4f914.tar.gz
tdelibs-09e466f879ed6e5b17980110eec2cc8db1b4f914.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 48b07a0ff120e8b4479bcac912d8a8f043e22ae4)
Diffstat (limited to 'kate/plugins/isearch')
-rw-r--r--kate/plugins/isearch/ISearchPlugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kate/plugins/isearch/ISearchPlugin.cpp b/kate/plugins/isearch/ISearchPlugin.cpp
index 4ee93cb87..823c44bc7 100644
--- a/kate/plugins/isearch/ISearchPlugin.cpp
+++ b/kate/plugins/isearch/ISearchPlugin.cpp
@@ -204,7 +204,7 @@ void ISearchPluginView::setAutoWrap( bool autoWrap )
bool ISearchPluginView::eventFilter( TQObject* o, TQEvent* e )
{
- if( TQT_BASE_OBJECT(o) != TQT_BASE_OBJECT(m_combo->lineEdit()) )
+ if( o != m_combo->lineEdit() )
return false;
if( e->type() == TQEvent::FocusIn ) {