diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:47 +0900 |
commit | 33b2598a0e14810025fd31406a689f561015e074 (patch) | |
tree | c3a0d7c8009f7452d749d7b2cc0be37b134eeaa0 /vcs | |
parent | 676a13490dc7163e5c99a0f39094a2a4148d3963 (diff) | |
download | tdevelop-33b2598a0e14810025fd31406a689f561015e074.tar.gz tdevelop-33b2598a0e14810025fd31406a689f561015e074.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'vcs')
-rw-r--r-- | vcs/subversion/commitdlg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<TQKeyEvent*>(ev); if( ( k->key() == TQt::Key_Return || k->key() == TQt::Key_Enter ) && k->state() == TQt::ControlButton ) { accept(); |