diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 21:16:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 21:38:27 +0900 |
commit | a3180d7d508dc046a75a887d43a7e6b2d5f02468 (patch) | |
tree | 6fc3295d8f5cf222b37b0721ed00b1a1f514cc96 /src/newfirstrunwizard.ui.h | |
parent | fe71db0569f2ab1aa559a031aa9ad54003371aea (diff) | |
download | tork-a3180d7d508dc046a75a887d43a7e6b2d5f02468.tar.gz tork-a3180d7d508dc046a75a887d43a7e6b2d5f02468.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/newfirstrunwizard.ui.h')
-rw-r--r-- | src/newfirstrunwizard.ui.h | 22 |
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()) ); } |