diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-01 00:14:55 +0900 |
commit | 2d0252be2c7d7720c1ee7df1d2e643ef4ac3735a (patch) | |
tree | 977663b909d0e288727215ec7b59b0458fd798ea | |
parent | d31a7027d0b8e2237b1b398e436e82e9944b38cb (diff) | |
download | tdevelop-2d0252be2c7d7720c1ee7df1d2e643ef4ac3735a.tar.gz tdevelop-2d0252be2c7d7720c1ee7df1d2e643ef4ac3735a.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 33b2598a0e14810025fd31406a689f561015e074)
-rw-r--r-- | lib/widgets/propeditor/ppixmapedit.cpp | 2 | ||||
-rw-r--r-- | vcs/subversion/commitdlg.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/widgets/propeditor/ppixmapedit.cpp b/lib/widgets/propeditor/ppixmapedit.cpp index 5effbf42..3241f892 100644 --- a/lib/widgets/propeditor/ppixmapedit.cpp +++ b/lib/widgets/propeditor/ppixmapedit.cpp @@ -131,7 +131,7 @@ bool PPixmapEdit::eventFilter(TQObject *o, TQEvent *ev) } if(ev->type() == TQEvent::KeyPress) { - TQKeyEvent* e = TQT_TQKEYEVENT(ev); + TQKeyEvent* e = static_cast<TQKeyEvent*>(ev); if((e->key() == Key_Enter) || (e->key()== Key_Space) || (e->key() == Key_Return)) { m_button->animateClick(); 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(); |