summaryrefslogtreecommitdiffstats
path: root/knights/setpageservers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/setpageservers.cpp')
-rw-r--r--knights/setpageservers.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/knights/setpageservers.cpp b/knights/setpageservers.cpp
index 57ebae9..f7cf053 100644
--- a/knights/setpageservers.cpp
+++ b/knights/setpageservers.cpp
@@ -81,11 +81,11 @@ void setPageServers::initTab1( void )
BuildServerData();
- connect( Servers_Button_Add, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotServer_Add() ) );
- connect( Servers_Button_Change, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotServer_Modify() ) );
- connect( Servers_Button_Delete, TQT_SIGNAL( clicked() ), this, TQT_SLOT( slotServer_Delete() ) );
- connect( Servers, TQT_SIGNAL( activated(int) ), this, TQT_SLOT( slotCurrent(int) ) );
- connect( Servers_ListView, TQT_SIGNAL( selectionChanged() ), this, TQT_SLOT( selectionChanged() ) );
+ connect( Servers_Button_Add, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotServer_Add() ) );
+ connect( Servers_Button_Change, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotServer_Modify() ) );
+ connect( Servers_Button_Delete, TQ_SIGNAL( clicked() ), this, TQ_SLOT( slotServer_Delete() ) );
+ connect( Servers, TQ_SIGNAL( activated(int) ), this, TQ_SLOT( slotCurrent(int) ) );
+ connect( Servers_ListView, TQ_SIGNAL( selectionChanged() ), this, TQ_SLOT( selectionChanged() ) );
TabParent->addTab( Tab1, i18n("Servers") );
}
@@ -110,43 +110,43 @@ void setPageServers::initTab2( void )
FilterLevels << i18n("Filter Everything") << i18n("Default") << "---" << "---" << "---" << i18n("No Filtering");
COMBO_Profanity->insertStringList( FilterLevels );
COMBO_Profanity->setCurrentItem( Resource->OPTION_Profanity );
- connect( COMBO_Profanity, TQT_SIGNAL( activated(int) ), this, TQT_SLOT( slot_Profanity(int) ) );
+ connect( COMBO_Profanity, TQ_SIGNAL( activated(int) ), this, TQ_SLOT( slot_Profanity(int) ) );
BUTTON_Auto_Close_ICS = new TQCheckBox( i18n( "Automatically Close Previous ICS Match" ), Tab2 );
BUTTON_Auto_Close_ICS->setChecked( Resource->OPTION_Auto_Close_Last_ICS );
- connect( BUTTON_Auto_Close_ICS, TQT_SIGNAL( toggled(bool) ),
- this, TQT_SLOT( slot_Auto_Close_ICS(bool) ) );
+ connect( BUTTON_Auto_Close_ICS, TQ_SIGNAL( toggled(bool) ),
+ this, TQ_SLOT( slot_Auto_Close_ICS(bool) ) );
BUTTON_Private = new TQCheckBox( i18n( "Private Matches" ), Tab2 );
BUTTON_Private->setChecked( Resource->OPTION_Private );
- connect( BUTTON_Private, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slot_Private(bool) ) );
+ connect( BUTTON_Private, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( slot_Private(bool) ) );
BUTTON_Premove = new TQCheckBox( i18n( "Enable Premove" ), Tab2 );
BUTTON_Premove->setChecked( Resource->OPTION_Premove );
- connect( BUTTON_Premove, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slot_Premove(bool) ) );
+ connect( BUTTON_Premove, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( slot_Premove(bool) ) );
BUTTON_Kibitz = new TQCheckBox( i18n( "Enable Kibitzes" ), Tab2 );
BUTTON_Kibitz->setChecked( Resource->OPTION_Kibitz );
- connect( BUTTON_Kibitz, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slot_Kibitz(bool) ) );
+ connect( BUTTON_Kibitz, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( slot_Kibitz(bool) ) );
BUTTON_Tell = new TQCheckBox( i18n( "Enable Unregistered Tells" ), Tab2 );
BUTTON_Tell->setChecked( Resource->OPTION_Tell );
- connect( BUTTON_Tell, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slot_Tell(bool) ) );
+ connect( BUTTON_Tell, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( slot_Tell(bool) ) );
BUTTON_Shout = new TQCheckBox( i18n( "Enable Shouts" ), Tab2 );
BUTTON_Shout->setChecked( Resource->OPTION_Shout );
- connect( BUTTON_Shout, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slot_Shout(bool) ) );
+ connect( BUTTON_Shout, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( slot_Shout(bool) ) );
BUTTON_Seek = new TQCheckBox( i18n( "Enable Seeks" ), Tab2 );
BUTTON_Seek->setChecked( Resource->OPTION_Seek );
- connect( BUTTON_Seek, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT( slot_Seek(bool) ) );
+ connect( BUTTON_Seek, TQ_SIGNAL( toggled(bool) ), this, TQ_SLOT( slot_Seek(bool) ) );
BOX_SeekTimer = new TQHBox( Tab2 );
BUTTON_SeekTimer = new TQSpinBox( 3, 120, 1, BOX_SeekTimer );
BUTTON_SeekTimer->setSuffix( i18n(" sec.") );
BUTTON_SeekTimer->setValue( Resource->Seek_Timer / 10 );
- connect( BUTTON_SeekTimer, TQT_SIGNAL( valueChanged(int) ),
- this, TQT_SLOT( slot_SeekTimer(int) ) );
+ connect( BUTTON_SeekTimer, TQ_SIGNAL( valueChanged(int) ),
+ this, TQ_SLOT( slot_SeekTimer(int) ) );
LABEL_SeekTimer = new TQLabel( i18n("Seconds Between Seek Updates"), BOX_SeekTimer );
TabParent->addTab( Tab2, i18n("Options") );
@@ -204,7 +204,7 @@ void setPageServers::BuildServerData( void )
void setPageServers::slotServer_Add( void )
{
Server_Dialog = new dlg_server( TabParent, "ServerDialog", Resource );
- connect( Server_Dialog, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( BuildServerData() ) );
+ connect( Server_Dialog, TQ_SIGNAL( destroyed() ), this, TQ_SLOT( BuildServerData() ) );
emit enableApply();
}
///////////////////////////////////////
@@ -220,7 +220,7 @@ void setPageServers::slotServer_Modify( void )
if( Select.isEmpty() ) return;
Item = Select.first();
Server_Dialog = new dlg_server( TabParent, "ServerDialog", Resource, Item->text(0) );
- connect( Server_Dialog, TQT_SIGNAL( destroyed() ), this, TQT_SLOT( BuildServerData() ) );
+ connect( Server_Dialog, TQ_SIGNAL( destroyed() ), this, TQ_SLOT( BuildServerData() ) );
emit enableApply();
}
///////////////////////////////////////