summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/telescopewizardprocess.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/telescopewizardprocess.cpp')
-rw-r--r--kstars/kstars/telescopewizardprocess.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kstars/kstars/telescopewizardprocess.cpp b/kstars/kstars/telescopewizardprocess.cpp
index d7eb6bd5..becd8ade 100644
--- a/kstars/kstars/telescopewizardprocess.cpp
+++ b/kstars/kstars/telescopewizardprocess.cpp
@@ -91,14 +91,14 @@ telescopeWizardProcess::telescopeWizardProcess( TQWidget* parent, const char* na
portList << "/dev/ttyS0" << "/dev/ttyS1" << "/dev/ttyS2" << "/dev/ttyS3" << "/dev/ttyS4"
<< "/dev/ttyUSB0" << "/dev/ttyUSB1" << "/dev/ttyUSB2" << "/dev/ttyUSB3";// << "/dev/ttyUSB4";
- connect(helpB, TQT_SIGNAL(clicked()), parent, TQT_SLOT(appHelpActivated()));
- connect(nextB, TQT_SIGNAL(clicked()), this, TQT_SLOT(processNext()));
- connect(backB, TQT_SIGNAL(clicked()), this, TQT_SLOT(processBack()));
- connect(setTimeB, TQT_SIGNAL(clicked()), this, TQT_SLOT(newTime()));
- connect(setLocationB, TQT_SIGNAL(clicked()), this, TQT_SLOT(newLocation()));
+ connect(helpB, TQ_SIGNAL(clicked()), parent, TQ_SLOT(appHelpActivated()));
+ connect(nextB, TQ_SIGNAL(clicked()), this, TQ_SLOT(processNext()));
+ connect(backB, TQ_SIGNAL(clicked()), this, TQ_SLOT(processBack()));
+ connect(setTimeB, TQ_SIGNAL(clicked()), this, TQ_SLOT(newTime()));
+ connect(setLocationB, TQ_SIGNAL(clicked()), this, TQ_SLOT(newLocation()));
newDeviceTimer = new TQTimer(this);
- TQObject::connect( newDeviceTimer, TQT_SIGNAL(timeout()), this, TQT_SLOT(processPort()) );
+ TQObject::connect( newDeviceTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(processPort()) );
}
@@ -289,8 +289,8 @@ void telescopeWizardProcess::processPort()
{
newDeviceTimer->stop();
linkRejected = false;
- connect(indiDev->stdDev, TQT_SIGNAL(linkRejected()), this, TQT_SLOT(scanPorts()));
- connect(indiDev->stdDev, TQT_SIGNAL(linkAccepted()), this, TQT_SLOT(linkSuccess()));
+ connect(indiDev->stdDev, TQ_SIGNAL(linkRejected()), this, TQ_SLOT(scanPorts()));
+ connect(indiDev->stdDev, TQ_SIGNAL(linkAccepted()), this, TQ_SLOT(linkSuccess()));
scanPorts();
return;
}