diff options
Diffstat (limited to 'konqueror/konq_combo.cpp')
-rw-r--r-- | konqueror/konq_combo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/konqueror/konq_combo.cpp b/konqueror/konq_combo.cpp index 850859b58..c1cbe734b 100644 --- a/konqueror/konq_combo.cpp +++ b/konqueror/konq_combo.cpp @@ -396,7 +396,7 @@ bool KonqCombo::eventFilter( TQObject *o, TQEvent *ev ) // Handle Ctrl+Del/Backspace etc better than the Qt widget, which always // jumps to the next whitespace. TQLineEdit *edit = lineEdit(); - if ( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(edit) ) { + if ( o == edit ) { int type = ev->type(); if ( type == TQEvent::KeyPress ) { TQKeyEvent *e = TQT_TQKEYEVENT( ev ); |