add the client startup time to the debug window / rename Version label to Client, which is better suiting now / add IBeamCursor for selectable text on the information page / make ">" sign on RPC page untranslatable / re-order XML-file tags to match real GUI element order

This commit is contained in:
Philip Kaufmann
2012-05-12 00:28:58 +02:00
parent b34c5f3c0f
commit d2f7778cc7
4 changed files with 114 additions and 56 deletions

View File

@@ -5,6 +5,7 @@
#include "transactiontablemodel.h"
#include "main.h"
static const int64 nClientStartupTime = GetTime();
#include <QDateTime>
@@ -98,3 +99,8 @@ QString ClientModel::clientName() const
{
return QString::fromStdString(CLIENT_NAME);
}
QDateTime ClientModel::formatClientStartupTime() const
{
return QDateTime::fromTime_t(nClientStartupTime);
}