mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-30 04:16:40 -05:00
Fixed missing seconds in time format.
Added new basic class for date/time format. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5825 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
8a3973de81
commit
968f72f303
20 changed files with 195 additions and 77 deletions
|
|
@ -28,7 +28,7 @@
|
|||
#include "gui/msgs/MessageComposer.h"
|
||||
#include "gui/common/StatusDefs.h"
|
||||
#include "gui/common/AvatarDefs.h"
|
||||
#include "rshare.h"
|
||||
#include "util/DateTime.h"
|
||||
|
||||
#include "gui/notifyqt.h"
|
||||
|
||||
|
|
@ -118,7 +118,7 @@ void PeerItem::updateItemStatic()
|
|||
{
|
||||
/* set peer name */
|
||||
peerNameLabel->setText(QString::fromUtf8(details.name.c_str()));
|
||||
lastLabel-> setText(Rshare::customLongDate(details.lastConnect));
|
||||
lastLabel-> setText(DateTime::formatLongDateTime(details.lastConnect));
|
||||
|
||||
/* expanded Info */
|
||||
nameLabel->setText(QString::fromUtf8(details.name.c_str()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue