diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:48:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-18 11:25:20 +0900 |
commit | 2c7c646af5349a9a68c2f129fda7af338855ba85 (patch) | |
tree | 36853a1916641351a322dd78de1aaa787c70601c /khexedit/searchbar.cpp | |
parent | 16b9b38e0267f80b68a78d861d111ca182551d5c (diff) | |
download | tdeutils-2c7c646af5349a9a68c2f129fda7af338855ba85.tar.gz tdeutils-2c7c646af5349a9a68c2f129fda7af338855ba85.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'khexedit/searchbar.cpp')
-rw-r--r-- | khexedit/searchbar.cpp | 2 |
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 ) |