From kde-commits Mon Aug 10 18:18:39 2009 From: Albert Astals Cid Date: Mon, 10 Aug 2009 18:18:39 +0000 To: kde-commits Subject: branches/KDE/4.3/kdeplasma-addons/applets/weatherstation Message-Id: <1249928319.114643.32738.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=124992842511515 SVN commit 1009723 by aacid: correctly format time M +1 -1 weatherstation.cpp --- branches/KDE/4.3/kdeplasma-addons/applets/weatherstation/weatherstation.cpp #1009722:1009723 @@ -160,7 +160,7 @@ if (m_showToolTip) { Plasma::ToolTipContent ttc(data["Place"].toString(), - i18n("Last updated: ") + QDateTime::currentDateTime().toString()); + i18n("Last updated: ") + KGlobal::locale()->formatDateTime(QDateTime::currentDateTime(), KLocale::FancyLongDate)); Plasma::ToolTipManager::self()->setContent(this, ttc); } }