summaryrefslogtreecommitdiffstats
path: root/krecipes/src/widgets/kremenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krecipes/src/widgets/kremenu.cpp')
-rw-r--r--krecipes/src/widgets/kremenu.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/krecipes/src/widgets/kremenu.cpp b/krecipes/src/widgets/kremenu.cpp
index 51ae2fb..85581b9 100644
--- a/krecipes/src/widgets/kremenu.cpp
+++ b/krecipes/src/widgets/kremenu.cpp
@@ -78,7 +78,7 @@ void KreMenu::childEvent ( TQChildEvent *e )
else
button->show();
- connect ( button, SIGNAL( clicked( KreMenuButton* ) ), this, SLOT( collectClicks( KreMenuButton* ) ) );
+ connect ( button, TQ_SIGNAL( clicked( KreMenuButton* ) ), this, TQ_SLOT( collectClicks( KreMenuButton* ) ) );
}
}
else if ( e->type() == TQChildEvent::ChildRemoved ) {
@@ -139,8 +139,8 @@ MenuId KreMenu::createSubMenu( const TQString &title, const TQString &icon )
newSubMenuButton->setTitle( i18n( "Up" ) );
newSubMenuButton->setIconSet( il.loadIconSet( "1uparrow", TDEIcon::Panel ) );
- connect( newMenuButton, SIGNAL( clicked( MenuId ) ), this, SLOT( showMenu( MenuId ) ) );
- connect( newSubMenuButton, SIGNAL( clicked( MenuId ) ), this, SLOT( showMenu( MenuId ) ) );
+ connect( newMenuButton, TQ_SIGNAL( clicked( MenuId ) ), this, TQ_SLOT( showMenu( MenuId ) ) );
+ connect( newSubMenuButton, TQ_SIGNAL( clicked( MenuId ) ), this, TQ_SLOT( showMenu( MenuId ) ) );
return id;
@@ -344,8 +344,8 @@ KreMenuButton::KreMenuButton( KreMenu *parent, KrePanel _panel, MenuId id, const
subMenuId = 0; // By default it's not a submenu button
resize( parent->size().width(), 55 );
- connect ( parent, SIGNAL( resized( int, int ) ), this, SLOT( rescale() ) );
- connect( this, SIGNAL( clicked() ), this, SLOT( forwardClicks() ) );
+ connect ( parent, TQ_SIGNAL( resized( int, int ) ), this, TQ_SLOT( rescale() ) );
+ connect( this, TQ_SIGNAL( clicked() ), this, TQ_SLOT( forwardClicks() ) );
setCursor( TQCursor( KCursor::handCursor() ) );
}