summaryrefslogtreecommitdiffstats
path: root/khexedit/searchbar.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:48:25 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-18 16:30:54 +0900
commitf5f1b89f8bda3b5d5f57255b04da3a7626154e58 (patch)
tree0249fbe2d397f8f6c05a2ec7fbe7f5bc8d1beee1 /khexedit/searchbar.cpp
parent9b8380e617ad740085310208e3be24b42614f661 (diff)
downloadtdeutils-f5f1b89f.tar.gz
tdeutils-f5f1b89f.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2c7c646af5349a9a68c2f129fda7af338855ba85)
Diffstat (limited to 'khexedit/searchbar.cpp')
-rw-r--r--khexedit/searchbar.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/khexedit/searchbar.cpp b/khexedit/searchbar.cpp
index 02fbb4e..aeb4b77 100644
--- a/khexedit/searchbar.cpp
+++ b/khexedit/searchbar.cpp
@@ -110,7 +110,7 @@ CSearchBar::CSearchBar( TQWidget *parent, const char *name, WFlags f )
//
bool CSearchBar::eventFilter( TQObject *o, TQEvent *e )
{
- if( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(mInputEdit) && e->type() == TQEvent::KeyPress )
+ if( o == mInputEdit && e->type() == TQEvent::KeyPress )
{
TQKeyEvent *ke = (TQKeyEvent*)e;
if( ke->key() == Key_Return )