diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:44:19 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-14 15:41:01 +0900 |
commit | f452adff9414e9f8668dcdbeab160bab9a545779 (patch) | |
tree | e8b9c6bceb43d749036db538255ae57ba1ae9a3a | |
parent | 6508b043abf98d06b79802c637e65e403365eac3 (diff) | |
download | kpilot-f452adff9414e9f8668dcdbeab160bab9a545779.tar.gz kpilot-f452adff9414e9f8668dcdbeab160bab9a545779.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kpilot/fileInstallWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kpilot/fileInstallWidget.cpp b/kpilot/fileInstallWidget.cpp index 9c0fc84..467393d 100644 --- a/kpilot/fileInstallWidget.cpp +++ b/kpilot/fileInstallWidget.cpp @@ -145,7 +145,7 @@ bool FileInstallWidget::eventFilter(TQObject *watched, TQEvent *event) { FUNCTIONSETUP; - if(TQT_BASE_OBJECT(watched) == TQT_BASE_OBJECT(fIconView->viewport())) + if(watched == fIconView->viewport()) { if(event->type() == TQEvent::DragEnter) { dragEnterEvent(static_cast<TQDragEnterEvent*>(event)); |