diff options
author | Michele Calgaro <[email protected]> | 2023-11-30 21:31:54 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-01 00:14:33 +0900 |
commit | dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca (patch) | |
tree | d8e08433e02631259733ac5bac7426aca3bdad31 /klinkstatus/src/ui | |
parent | b4887167404390a15f8ba25da1ae0348e27b2699 (diff) | |
download | tdewebdev-dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca.tar.gz tdewebdev-dd931b3ea9ab2bb3effe05d1533f57fd8d7e01ca.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit d72f4843816818bdb27e7faae86e68d51d624267)
Diffstat (limited to 'klinkstatus/src/ui')
-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 ) { |