From 33b2598a0e14810025fd31406a689f561015e074 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Nov 2023 21:31:47 +0900 Subject: Replace 'Event' #define strings Signed-off-by: Michele Calgaro --- vcs/subversion/commitdlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcs/subversion/commitdlg.cpp') diff --git a/vcs/subversion/commitdlg.cpp b/vcs/subversion/commitdlg.cpp index b342da09..f1987250 100644 --- a/vcs/subversion/commitdlg.cpp +++ b/vcs/subversion/commitdlg.cpp @@ -32,7 +32,7 @@ bool CommitDlg::eventFilter( TQObject* obj, TQEvent* ev ) { if( ev->type() == TQEvent::KeyPress ) { - TQKeyEvent* k = TQT_TQKEYEVENT(ev); + TQKeyEvent* k = static_cast(ev); if( ( k->key() == TQt::Key_Return || k->key() == TQt::Key_Enter ) && k->state() == TQt::ControlButton ) { accept(); -- cgit v1.2.3