summaryrefslogtreecommitdiffstats
path: root/src/newfirstrunwizard.ui.h
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 21:16:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-01 20:25:20 +0900
commit01627fbd795c62fb7f6e8f0bce8ae6cf3dc5b6de (patch)
tree6fc3295d8f5cf222b37b0721ed00b1a1f514cc96 /src/newfirstrunwizard.ui.h
parent166571710ff186cff2b09a83336f6aadc2c8340a (diff)
downloadtork-01627fbd.tar.gz
tork-01627fbd.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a3180d7d508dc046a75a887d43a7e6b2d5f02468)
Diffstat (limited to 'src/newfirstrunwizard.ui.h')
-rw-r--r--src/newfirstrunwizard.ui.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/newfirstrunwizard.ui.h b/src/newfirstrunwizard.ui.h
index 3b612b8..a62d680 100644
--- a/src/newfirstrunwizard.ui.h
+++ b/src/newfirstrunwizard.ui.h
@@ -150,8 +150,8 @@ FirstRunWizard::init()
*whichproc<<whichCommand;
- connect( whichproc, SIGNAL(readReady(KProcIO * )),
- SLOT(processWhich(KProcIO * )) );
+ connect( whichproc, TQ_SIGNAL(readReady(KProcIO * )),
+ TQ_SLOT(processWhich(KProcIO * )) );
whichproc->start(KProcIO::NotifyOnExit,TRUE);
@@ -481,9 +481,9 @@ void FirstRunWizard::testTor()
delete client;
client = new TorClient(host,port);
- connect( client, SIGNAL(fatalError()),this, SLOT(cannotContactTor()));
- connect( client, SIGNAL(authenticationFailed()),this, SLOT(cannotContactTor()));
- connect( client, SIGNAL(authenticated()),this, SLOT(contactedTor()) );
+ connect( client, TQ_SIGNAL(fatalError()),this, TQ_SLOT(cannotContactTor()));
+ connect( client, TQ_SIGNAL(authenticationFailed()),this, TQ_SLOT(cannotContactTor()));
+ connect( client, TQ_SIGNAL(authenticated()),this, TQ_SLOT(contactedTor()) );
client->authenticate();
}
@@ -496,9 +496,9 @@ void FirstRunWizard::modifyConfs_clicked()
void FirstRunWizard::cannotContactTor()
{
- disconnect( client, SIGNAL(fatalError()),this, SLOT(cannotContactTor()));
- disconnect( client, SIGNAL(authenticationFailed()),this, SLOT(cannotContactTor()));
- disconnect( client, SIGNAL(authenticated()),this, SLOT(contactedTor()) );
+ disconnect( client, TQ_SIGNAL(fatalError()),this, TQ_SLOT(cannotContactTor()));
+ disconnect( client, TQ_SIGNAL(authenticationFailed()),this, TQ_SLOT(cannotContactTor()));
+ disconnect( client, TQ_SIGNAL(authenticated()),this, TQ_SLOT(contactedTor()) );
if (client != 0L){
client->socketReadyRead();
client->deleteLater();
@@ -530,8 +530,8 @@ void FirstRunWizard::cannotContactTor()
void FirstRunWizard::contactedTor()
{
- disconnect( client, SIGNAL(fatalError()),this, SLOT(cannotContactTor()));
- disconnect( client, SIGNAL(authenticated()),this, SLOT(contactedTor()) );
+ disconnect( client, TQ_SIGNAL(fatalError()),this, TQ_SLOT(cannotContactTor()));
+ disconnect( client, TQ_SIGNAL(authenticated()),this, TQ_SLOT(contactedTor()) );
if (client != 0L){
client->socketReadyRead();
client->deleteLater();
@@ -559,7 +559,7 @@ void FirstRunWizard::contactedTor()
testTorAgain->setEnabled(true);
TorkConfig::setGenerateRandomPassword(true);
// if (!monitorRemote->isChecked())
-// TQTimer::singleShot( 3000, this, SLOT(examineConfigFiles()) );
+// TQTimer::singleShot( 3000, this, TQ_SLOT(examineConfigFiles()) );
}