diff options
Diffstat (limited to 'kdeui/kactionselector.cpp')
-rw-r--r-- | kdeui/kactionselector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kdeui/kactionselector.cpp b/kdeui/kactionselector.cpp index 9bbf52dbf..056045906 100644 --- a/kdeui/kactionselector.cpp +++ b/kdeui/kactionselector.cpp @@ -343,7 +343,7 @@ void KActionSelector::polish() void KActionSelector::keyPressEvent( TQKeyEvent *e ) { if ( ! d->keyboardEnabled ) return; - if ( (e->state() & Qt::ControlButton) ) + if ( (e->state() & TQt::ControlButton) ) { switch ( e->key() ) { @@ -370,7 +370,7 @@ bool KActionSelector::eventFilter( TQObject *o, TQEvent *e ) { if ( d->keyboardEnabled && e->type() == TQEvent::KeyPress ) { - if ( (((TQKeyEvent*)e)->state() & Qt::ControlButton) ) + if ( (((TQKeyEvent*)e)->state() & TQt::ControlButton) ) { switch ( ((TQKeyEvent*)e)->key() ) { |