mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 15:27:57 +00:00
10 lines
241 B
C++
10 lines
241 B
C++
|
#include "guiutil.h"
|
||
|
|
||
|
#include <QDateTime>
|
||
|
|
||
|
QString DateTimeStr(qint64 nTime)
|
||
|
{
|
||
|
QDateTime date = QDateTime::fromMSecsSinceEpoch(nTime*1000);
|
||
|
return date.toString(Qt::DefaultLocaleShortDate) + QString(" ") + date.toString("hh:mm");
|
||
|
}
|