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.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/kstars/kstars/telescopewizardprocess.cpp b/kstars/kstars/telescopewizardprocess.cpp
index 3864f5d6..d29c6ba2 100644
--- a/kstars/kstars/telescopewizardprocess.cpp
+++ b/kstars/kstars/telescopewizardprocess.cpp
@@ -15,7 +15,7 @@
#include <tqstring.h>
#include <tqtimer.h>
#include <tqtable.h>
-#include <textedit.h>
+#include <tqtextedit.h>
#include <tqradiobutton.h>
#include <klistview.h>
@@ -74,11 +74,11 @@ telescopeWizardProcess::telescopeWizardProcess( TQWidget* parent, const char* na
dateOut->setText( TQString().sprintf("%d-%02d-%02d", newDate.year(), newDate.month(), newDate.day()));
if (ksw->geo()->translatedProvince().isEmpty())
- locationOut->setText( TQString("%1, %2").arg(ksw->geo()->translatedName()).arg(ksw->geo()->translatedCountry()));
+ locationOut->setText( TQString("%1, %2").tqarg(ksw->geo()->translatedName()).tqarg(ksw->geo()->translatedCountry()));
else
- locationOut->setText( TQString("%1, %2, %3").arg(ksw->geo()->translatedName())
- .arg(ksw->geo()->translatedProvince())
- .arg(ksw->geo()->translatedCountry()));
+ locationOut->setText( TQString("%1, %2, %3").tqarg(ksw->geo()->translatedName())
+ .tqarg(ksw->geo()->translatedProvince())
+ .tqarg(ksw->geo()->translatedCountry()));
for (unsigned int i=0; i < indidriver->devices.size(); i++)
@@ -106,7 +106,7 @@ telescopeWizardProcess::~telescopeWizardProcess()
{
if (progressScan)
if (progressScan->wasCancelled())
- indidriver->processDeviceStatus(1);
+ indidriver->processDevicetqStatus(1);
Options::setIndiMessages( INDIMessageBar );
@@ -211,9 +211,9 @@ void telescopeWizardProcess::newLocation()
ksw->slotGeoLocator();
- locationOut->setText( TQString("%1, %2, %3").arg(ksw->geo()->translatedName())
- .arg(ksw->geo()->translatedProvince())
- .arg(ksw->geo()->translatedCountry()));
+ locationOut->setText( TQString("%1, %2, %3").tqarg(ksw->geo()->translatedName())
+ .tqarg(ksw->geo()->translatedProvince())
+ .tqarg(ksw->geo()->translatedCountry()));
timeOut->setText( TQString().sprintf("%02d:%02d:%02d", ksw->data()->lt().time().hour(), ksw->data()->lt().time().minute(), ksw->data()->lt().time().second()));
dateOut->setText( TQString().sprintf("%d-%02d-%02d", ksw->data()->lt().date().year(),
@@ -237,7 +237,7 @@ int telescopeWizardProcess::establishLink()
if (indidriver->isDeviceRunning(telescopeCombo->currentText()))
{
indidriver->localListView->setSelected(driverItem, true);
- indidriver->processDeviceStatus(1);
+ indidriver->processDevicetqStatus(1);
}
// Set custome label for device
@@ -248,7 +248,7 @@ int telescopeWizardProcess::establishLink()
// Make sure we start is locally
indidriver->localR->setChecked(true);
// Run it
- indidriver->processDeviceStatus(0);
+ indidriver->processDevicetqStatus(0);
if (!indidriver->isDeviceRunning(telescopeCombo->currentText()))
return (3);
@@ -274,7 +274,7 @@ void telescopeWizardProcess::processPort()
if (timeOutCount >= TIMEOUT_THRESHHOLD)
{
- indidriver->processDeviceStatus(1);
+ indidriver->processDevicetqStatus(1);
Reset();
KMessageBox::error(0, i18n("Error: connection timeout. Unable to communicate with an INDI server"));
close();
@@ -335,7 +335,7 @@ void telescopeWizardProcess::scanPorts()
{
KMessageBox::sorry(0, i18n("Sorry. KStars failed to detect any attached telescopes, please check your settings and try again."));
linkRejected = true;
- indidriver->processDeviceStatus(1);
+ indidriver->processDevicetqStatus(1);
Reset();
return;
}