diff options
author | Michele Calgaro <[email protected]> | 2023-08-12 18:45:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-15 20:08:36 +0900 |
commit | d081c368c9ef32aa667e15eb06ee4884cd973b37 (patch) | |
tree | 0db65a17afd9b4ef7cd67bb8e5b0436a0c35ff65 | |
parent | 0cbfd1efd5e4ce05fa4e086385a328fe171f2f11 (diff) | |
download | abakus-d081c368c9ef32aa667e15eb06ee4884cd973b37.tar.gz abakus-d081c368c9ef32aa667e15eb06ee4884cd973b37.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 921a18db705b749a47e91438e9f6bbce580b992f)
-rw-r--r-- | src/editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/editor.cpp b/src/editor.cpp index 93a7fd2..d8028eb 100644 --- a/src/editor.cpp +++ b/src/editor.cpp @@ -778,7 +778,7 @@ EditorCompletion::~EditorCompletion() bool EditorCompletion::eventFilter( TQObject *obj, TQEvent *ev ) { - if ( TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(d->completionPopup) || TQT_BASE_OBJECT(obj) == TQT_BASE_OBJECT(d->completionListBox) ) + if ( obj == d->completionPopup || obj == d->completionListBox ) { if ( ev->type() == TQEvent::KeyPress ) |