changed the format of the timestamp for the ForumMsgItem

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3743 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-11-03 18:24:58 +00:00
parent 8e583f58be
commit 89f448d282

View File

@ -119,7 +119,7 @@ void ForumMsgItem::updateItemStatic()
QDateTime qtime; QDateTime qtime;
qtime.setTime_t(msg.ts); qtime.setTime_t(msg.ts);
QString timestamp = qtime.toString("dd.MMMM yyyy hh:mm:ss"); QString timestamp = qtime.toString("dd.MM.yyyy hh:mm:ss");
timestamplabel->setText(timestamp); timestamplabel->setText(timestamp);
nextFrame->hide(); nextFrame->hide();
@ -131,7 +131,7 @@ void ForumMsgItem::updateItemStatic()
QDateTime qtime; QDateTime qtime;
qtime.setTime_t(msg.ts); qtime.setTime_t(msg.ts);
QString timestamp = qtime.toString("dd.MMMM yyyy hh:mm:ss"); QString timestamp = qtime.toString("dd.MM.yyyy hh:mm:ss");
timestamplabel->setText(timestamp); timestamplabel->setText(timestamp);
prevSHLabel->setText(tr("In Reply to") + ": "); prevSHLabel->setText(tr("In Reply to") + ": ");