ToastFreeware
/
toast
/
confclerk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2dcbb2c
)
ISO formatting of conference dates in conferenceeditor.
author
gregor herrmann
<gregoa@debian.org>
Mon, 15 Aug 2011 12:44:19 +0000
(12:44 +0000)
committer
gregor herrmann
<gregoa@debian.org>
Mon, 15 Aug 2011 12:44:19 +0000
(12:44 +0000)
src/gui/conferenceeditor.cpp
patch
|
blob
|
history
diff --git
a/src/gui/conferenceeditor.cpp
b/src/gui/conferenceeditor.cpp
index 05a9b12d83e0d1436c73ab64916866eab0a222e5..60a57a46582d87dcb9d137255fef4f174fad7e5f 100644
(file)
--- 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();
}