diff options
Diffstat (limited to 'kate/part')
-rw-r--r-- | kate/part/katecodecompletion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kate/part/katecodecompletion.cpp b/kate/part/katecodecompletion.cpp index a161534e6..41d57dc29 100644 --- a/kate/part/katecodecompletion.cpp +++ b/kate/part/katecodecompletion.cpp @@ -533,7 +533,7 @@ void KateArgHint::show() bool KateArgHint::eventFilter( TQObject*, TQEvent* e ) { if( isVisible() && e->type() == TQEvent::KeyPress ){ - TQKeyEvent* ke = TQT_TQKEYEVENT( e ); + TQKeyEvent* ke = static_cast<TQKeyEvent*>( e ); if( (ke->state() & ControlButton) && ke->key() == Key_Left ){ setCurrentFunction( currentFunction() - 1 ); ke->accept(); |