diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:54 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:47:48 +0900 |
commit | d72f4843816818bdb27e7faae86e68d51d624267 (patch) | |
tree | 58aa8d1c8fd1287f318efb28abb341d136e24091 /klinkstatus | |
parent | 9f67f75a70919376d8cd380ac1c076c25c4e7ec8 (diff) | |
download | tdewebdev-d72f4843816818bdb27e7faae86e68d51d624267.tar.gz tdewebdev-d72f4843816818bdb27e7faae86e68d51d624267.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'klinkstatus')
-rw-r--r-- | klinkstatus/src/ui/klshistorycombo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klinkstatus/src/ui/klshistorycombo.cpp b/klinkstatus/src/ui/klshistorycombo.cpp index 68da2720..cdcf1a59 100644 --- a/klinkstatus/src/ui/klshistorycombo.cpp +++ b/klinkstatus/src/ui/klshistorycombo.cpp @@ -84,7 +84,7 @@ bool KLSHistoryCombo::eventFilter( TQObject *o, TQEvent *ev ) int type = ev->type(); if ( type == TQEvent::KeyPress ) { - TQKeyEvent *e = TQT_TQKEYEVENT( ev ); + TQKeyEvent *e = static_cast<TQKeyEvent*>( ev ); if ( e->key() == Key_Return || e->key() == Key_Enter ) { |