diff options
Diffstat (limited to 'ksirc')
-rw-r--r-- | ksirc/ahistlineedit.cpp | 2 | ||||
-rw-r--r-- | ksirc/mditoplevel.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ksirc/ahistlineedit.cpp b/ksirc/ahistlineedit.cpp index 1eb0df88..468b6dc1 100644 --- a/ksirc/ahistlineedit.cpp +++ b/ksirc/ahistlineedit.cpp @@ -362,7 +362,7 @@ void aHistLineEdit::mousePressEvent ( TQMouseEvent *e ) #endif bool aHistLineEdit::eventFilter( TQObject *o, TQEvent *e ) { - if ( TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(this) && e->type() == TQEvent::AccelOverride ) + if ( o == this && e->type() == TQEvent::AccelOverride ) if(processKeyEvent( TQT_TQKEYEVENT( e ) ) == true) return true; diff --git a/ksirc/mditoplevel.cpp b/ksirc/mditoplevel.cpp index dfad0c5c..f04acd8e 100644 --- a/ksirc/mditoplevel.cpp +++ b/ksirc/mditoplevel.cpp @@ -207,7 +207,7 @@ void MDITopLevel::slotMarkPageDirty( bool addressed ) { // This is called when a line appeared in this channel. // addressed is true if it was addressed to the user - TDEMainWindow *window = dynamic_cast<TDEMainWindow *>( TQT_TQWIDGET(const_cast<TQT_BASE_OBJECT_NAME *>( sender() )) ); + TDEMainWindow *window = dynamic_cast<TDEMainWindow *>( const_cast<TQObject*>( sender() ) ); if ( !window ) return; @@ -225,7 +225,7 @@ void MDITopLevel::slotMarkPageDirty( bool addressed ) void MDITopLevel::slotChangeChannelName( const TQString &, const TQString &channelName ) { - TDEMainWindow *window = dynamic_cast<TDEMainWindow *>( TQT_TQWIDGET(const_cast<TQT_BASE_OBJECT_NAME *>( sender() )) ); + TDEMainWindow *window = dynamic_cast<TDEMainWindow *>( const_cast<TQObject*>( sender() ) ); if ( !window ) return; |