summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-08-12 18:45:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-08-15 14:36:47 +0900
commit921a18db705b749a47e91438e9f6bbce580b992f (patch)
tree0db65a17afd9b4ef7cd67bb8e5b0436a0c35ff65
parent9ace50d1996ad4d2e374b0045311e985b652ee5d (diff)
downloadabakus-921a18db705b749a47e91438e9f6bbce580b992f.tar.gz
abakus-921a18db705b749a47e91438e9f6bbce580b992f.zip
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--src/editor.cpp2
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 )