diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:48:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-18 16:30:54 +0900 |
commit | f5f1b89f8bda3b5d5f57255b04da3a7626154e58 (patch) | |
tree | 0249fbe2d397f8f6c05a2ec7fbe7f5bc8d1beee1 /khexedit/lib/khexedit.cpp | |
parent | 9b8380e617ad740085310208e3be24b42614f661 (diff) | |
download | tdeutils-f5f1b89f8bda3b5d5f57255b04da3a7626154e58.tar.gz tdeutils-f5f1b89f8bda3b5d5f57255b04da3a7626154e58.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2c7c646af5349a9a68c2f129fda7af338855ba85)
Diffstat (limited to 'khexedit/lib/khexedit.cpp')
-rw-r--r-- | khexedit/lib/khexedit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/khexedit/lib/khexedit.cpp b/khexedit/lib/khexedit.cpp index 4873fa3..dd34e1e 100644 --- a/khexedit/lib/khexedit.cpp +++ b/khexedit/lib/khexedit.cpp @@ -1178,7 +1178,7 @@ void KHexEdit::showEvent( TQShowEvent *e ) bool KHexEdit::eventFilter( TQObject *O, TQEvent *E ) { - if( TQT_BASE_OBJECT(O) == TQT_BASE_OBJECT(this) || TQT_BASE_OBJECT(O) == TQT_BASE_OBJECT(viewport()) ) + if( O == this || O == viewport() ) { if( E->type() == TQEvent::FocusIn ) { |