summaryrefslogtreecommitdiffstats
path: root/knights/thinbuttons.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/thinbuttons.cpp')
-rw-r--r--knights/thinbuttons.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knights/thinbuttons.cpp b/knights/thinbuttons.cpp
index c9c4e43..0518306 100644
--- a/knights/thinbuttons.cpp
+++ b/knights/thinbuttons.cpp
@@ -38,7 +38,7 @@ thinbuttons::thinbuttons(TQWidget *parent, const char *name, resource *Rsrc ) :
matchMenu->insertSeparator();
matchMenu->insertItem( TQIconSet( Resource->LoadIcon( TQString("window-close"), TDEIcon::Small ) ),
i18n("&Close Match"), MENU_CLOSE );
- connect( matchMenu, TQT_SIGNAL( activated(int) ), this, TQT_SLOT( menuClicked(int) ) );
+ connect( matchMenu, TQ_SIGNAL( activated(int) ), this, TQ_SLOT( menuClicked(int) ) );
}
thinbuttons::~thinbuttons()
{
@@ -77,7 +77,7 @@ TQButton* thinbuttons::create( int id )
newButton->setText( TQString("Match") );
newButton->show();
- connect( newButton, TQT_SIGNAL( clicked() ), this, TQT_SLOT( buttonClicked() ) );
+ connect( newButton, TQ_SIGNAL( clicked() ), this, TQ_SLOT( buttonClicked() ) );
return newButton;
}
///////////////////////////////////////
@@ -149,7 +149,7 @@ void thinbuttons::remove( TQButton* button )
for( tmp = 0; tmp < buttons.count(); tmp++ )
if( buttons.at( tmp )->button == button )
{
- disconnect( buttons.at( tmp )->button, TQT_SIGNAL( clicked() ), this, TQT_SLOT( buttonClicked() ) );
+ disconnect( buttons.at( tmp )->button, TQ_SIGNAL( clicked() ), this, TQ_SLOT( buttonClicked() ) );
buttons.remove( tmp );
}
}