From c2405bdd9c2e65621fceace1030d4d49b44cca18 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Nov 2023 20:43:27 +0900 Subject: [PATCH] Replace 'Event' #define strings Signed-off-by: Michele Calgaro --- kpilot/fileInstallWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kpilot/fileInstallWidget.cpp b/kpilot/fileInstallWidget.cpp index 9685100..4f60d0a 100644 --- a/kpilot/fileInstallWidget.cpp +++ b/kpilot/fileInstallWidget.cpp @@ -159,7 +159,7 @@ bool FileInstallWidget::eventFilter(TQObject *watched, TQEvent *event) } if(event->type() == TQEvent::MouseButtonPress) { - contextMenu(TQT_TQMOUSEEVENT(event)); + contextMenu(static_cast(event)); } }