diff options
Diffstat (limited to 'ksim/ksimsysinfo.cpp')
-rw-r--r-- | ksim/ksimsysinfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ksim/ksimsysinfo.cpp b/ksim/ksimsysinfo.cpp index 7140e3a..7c39e22 100644 --- a/ksim/ksimsysinfo.cpp +++ b/ksim/ksimsysinfo.cpp @@ -76,7 +76,7 @@ void KSim::Sysinfo::clockUptimeUpdate() if (m_timeLabel) { TQTime now = TQTime::currentTime(); - time = KGlobal::locale()->formatTime(now, true); + time = TDEGlobal::locale()->formatTime(now, true); if ( now == TQTime(0, 0) ) updateDate = true; @@ -86,7 +86,7 @@ void KSim::Sysinfo::clockUptimeUpdate() // only update the date when necessary if (m_dateLabel) { if (updateDate) { - m_dateLabel->setText(KGlobal::locale()->formatDate(TQDate::currentDate())); + m_dateLabel->setText(TDEGlobal::locale()->formatDate(TQDate::currentDate())); updateDate = false; } } |