diff options
Diffstat (limited to 'kcontrol/locale/klocalesample.cpp')
-rw-r--r-- | kcontrol/locale/klocalesample.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/locale/klocalesample.cpp b/kcontrol/locale/klocalesample.cpp index 9903965e8..1f34e9c89 100644 --- a/kcontrol/locale/klocalesample.cpp +++ b/kcontrol/locale/klocalesample.cpp @@ -90,9 +90,9 @@ void TDELocaleSample::slotUpdateTime() { TQDateTime dt = TQDateTime::currentDateTime(); - m_dateSample->setText(m_locale->formatDate(TQT_TQDATE_OBJECT(dt.date()), false)); - m_dateShortSample->setText(m_locale->formatDate(TQT_TQDATE_OBJECT(dt.date()), true)); - m_timeSample->setText(m_locale->formatTime(TQT_TQTIME_OBJECT(dt.time()), true)); + m_dateSample->setText(m_locale->formatDate(dt.date(), false)); + m_dateShortSample->setText(m_locale->formatDate(dt.date(), true)); + m_timeSample->setText(m_locale->formatTime(dt.time(), true)); } void TDELocaleSample::slotLocaleChanged() |