From 3a6ca6045d4ca94463ed8e09fdb9798dfbef8b21 Mon Sep 17 00:00:00 2001 From: gregor herrmann Date: Mon, 15 Aug 2011 12:44:19 +0000 Subject: [PATCH] ISO formatting of conference dates in conferenceeditor. --- src/gui/conferenceeditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/conferenceeditor.cpp b/src/gui/conferenceeditor.cpp index 05a9b12..60a57a4 100644 --- a/src/gui/conferenceeditor.cpp +++ b/src/gui/conferenceeditor.cpp @@ -91,9 +91,9 @@ void ConferenceEditor::itemSelected(const QModelIndex& current, const QModelInde conferenceSubtitle->setText(conf.subtitle()); conferenceWhere->setText(conf.city() + ", " + conf.venue()); conferenceWhen->setText( - conf.start().toString("dd-MM-yyyy") + conf.start().toString("yyyy-MM-dd") + " - " + - conf.end().toString("dd-MM-yyyy")); + conf.end().toString("yyyy-MM-dd")); conferenceInfo->setCurrentIndex(0); removeBtn->show(); } -- 2.39.5