summaryrefslogtreecommitdiffstats
path: root/kstars/kstars/simclock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kstars/kstars/simclock.cpp')
-rw-r--r--kstars/kstars/simclock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kstars/kstars/simclock.cpp b/kstars/kstars/simclock.cpp
index 41d8c71e..0e7c467a 100644
--- a/kstars/kstars/simclock.cpp
+++ b/kstars/kstars/simclock.cpp
@@ -163,7 +163,7 @@ void SimClock::setUTC(const KStarsDateTime &newtime) {
}
kdDebug() << i18n( "Setting clock: UTC: %1 JD: %2" )
- .tqarg( UTC.toString() ).tqarg( KGlobal::locale()->formatNumber( UTC.djd() ) ) << endl;
+ .arg( UTC.toString() ).arg( KGlobal::locale()->formatNumber( UTC.djd() ) ) << endl;
emit timeChanged();
} else {
kdDebug() << i18n( "Cannot set SimClock: Invalid Date/Time." ) << endl;
@@ -172,7 +172,7 @@ void SimClock::setUTC(const KStarsDateTime &newtime) {
void SimClock::setScale(float s) {
if (Scale != s ) {
- kdDebug() << i18n( "New clock scale: %1 sec" ).tqarg( s ) << endl;
+ kdDebug() << i18n( "New clock scale: %1 sec" ).arg( s ) << endl;
Scale = s;
if (tmr.isActive()) {
julianmark = UTC.djd();