summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/telescopeprop.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/telescopeprop.cpp')
-rw-r--r--kstars/kstars/telescopeprop.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kstars/kstars/telescopeprop.cpp b/kstars/kstars/telescopeprop.cpp
index 572c51d1..b2f17009 100644
--- a/kstars/kstars/telescopeprop.cpp
+++ b/kstars/kstars/telescopeprop.cpp
@@ -213,10 +213,10 @@ void telescopeProp::updateScopeDetails(int index)
versionEdit->setText(indi_driver->devices[finalIndex]->version);
if (indi_driver->devices[finalIndex]->focal_length != -1)
- focalEdit->setText(TQString("%1").tqarg(indi_driver->devices[finalIndex]->focal_length));
+ focalEdit->setText(TQString("%1").arg(indi_driver->devices[finalIndex]->focal_length));
if (indi_driver->devices[finalIndex]->aperture != -1)
- apertureEdit->setText(TQString("%1").tqarg(indi_driver->devices[finalIndex]->aperture));
+ apertureEdit->setText(TQString("%1").arg(indi_driver->devices[finalIndex]->aperture));
}
@@ -228,7 +228,7 @@ void telescopeProp::removeScope()
index = telescopeListBox->currentItem();
finalIndex = findDeviceIndex(index);
- if (KMessageBox::warningContinueCancel( 0, i18n("Are you sure you want to remove %1?").tqarg(indi_driver->devices[finalIndex]->label), i18n("Delete Confirmation"),KStdGuiItem::del())!=KMessageBox::Continue)
+ if (KMessageBox::warningContinueCancel( 0, i18n("Are you sure you want to remove %1?").arg(indi_driver->devices[finalIndex]->label), i18n("Delete Confirmation"),KStdGuiItem::del())!=KMessageBox::Continue)
return;
telescopeListBox->removeItem(index);