diff options
Diffstat (limited to 'tdeui/tdeactioncollection.cpp')
-rw-r--r-- | tdeui/tdeactioncollection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/tdeactioncollection.cpp b/tdeui/tdeactioncollection.cpp index 3e78c01b0..d4d9576f5 100644 --- a/tdeui/tdeactioncollection.cpp +++ b/tdeui/tdeactioncollection.cpp @@ -501,14 +501,14 @@ void TDEActionCollection::connectHighlight( TQWidget *container, TDEAction *acti { actionList = new TQPtrList<TDEAction>; - if ( ::tqqt_cast<TQPopupMenu *>( container ) ) + if ( ::tqt_cast<TQPopupMenu *>( container ) ) { connect( container, TQT_SIGNAL( highlighted( int ) ), this, TQT_SLOT( slotMenuItemHighlighted( int ) ) ); connect( container, TQT_SIGNAL( aboutToHide() ), this, TQT_SLOT( slotMenuAboutToHide() ) ); } - else if ( ::tqqt_cast<TDEToolBar *>( container ) ) + else if ( ::tqt_cast<TDEToolBar *>( container ) ) { connect( container, TQT_SIGNAL( highlighted( int, bool ) ), this, TQT_SLOT( slotToolBarButtonHighlighted( int, bool ) ) ); |