summaryrefslogtreecommitdiff
path: root/src/newtabpage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newtabpage.cpp')
-rw-r--r--src/newtabpage.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp
index e2837f94..043648e7 100644
--- a/src/newtabpage.cpp
+++ b/src/newtabpage.cpp
@@ -49,6 +49,7 @@
#include <KConfig>
#include <KConfigGroup>
#include <KDialog>
+#include <KCalendarSystem>
// Qt Includes
#include <QFile>
@@ -539,7 +540,8 @@ void NewTabPage::downloadsPage()
div.appendInside("<strong>" + fName + "</strong>");
div.appendInside(" - ");
- div.appendInside( item.dateTime.toString("'<em>'dd MMMM yyyy hh:mm'</em>'") );
+ QString date = KGlobal::locale()->formatDateTime(item.dateTime, KLocale::FancyLongDate);
+ div.appendInside("<em>" + date + "</em>");
div.appendInside("<br/>");
div.appendInside(item.srcUrlString);