summaryrefslogtreecommitdiffstats
path: root/konq-plugins/searchbar
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-08-12 18:46:09 +0900
committerMichele Calgaro <[email protected]>2023-08-17 17:49:18 +0900
commitc0f59ca3de54666e024e9d54f4742f9230319aee (patch)
tree8fbdcecf3e44b46c7fe9e21e893fc0828b57db4d /konq-plugins/searchbar
parent87dc5f62f604d41da2fe3f2297d0d5a59ccb414e (diff)
downloadtdeaddons-c0f59ca3de54666e024e9d54f4742f9230319aee.tar.gz
tdeaddons-c0f59ca3de54666e024e9d54f4742f9230319aee.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 9f59252f1b1d8a5f0ab9df3850552385f61aee55)
Diffstat (limited to 'konq-plugins/searchbar')
-rw-r--r--konq-plugins/searchbar/searchbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/konq-plugins/searchbar/searchbar.cpp b/konq-plugins/searchbar/searchbar.cpp
index cf2809c..0752ada 100644
--- a/konq-plugins/searchbar/searchbar.cpp
+++ b/konq-plugins/searchbar/searchbar.cpp
@@ -132,7 +132,7 @@ TQChar delimiter()
bool SearchBarPlugin::eventFilter(TQObject *o, TQEvent *e)
{
- if( TQT_BASE_OBJECT(o)==TQT_BASE_OBJECT(m_searchCombo->lineEdit()) && e->type() == TQEvent::KeyPress )
+ if( o==m_searchCombo->lineEdit() && e->type() == TQEvent::KeyPress )
{
TQKeyEvent *k = (TQKeyEvent *)e;
TQString text = k->text();