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 17:31:33 +0900 |
commit | 0a566136eb1983b1df23572e5bb566c70da333cf (patch) | |
tree | 7f3c829afc21ddffa751019c390ac2be7c902242 | |
parent | 980849e7c8ed2ebbde33da076c0914bd1fcb8db2 (diff) | |
download | kpilot-0a566136.tar.gz kpilot-0a566136.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit f452adff9414e9f8668dcdbeab160bab9a545779)
-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)); |