Fixed display of version information.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7998 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2015-03-08 13:31:44 +00:00
parent 2664cf2f9a
commit 400d3179e8
9 changed files with 33 additions and 68 deletions

View file

@ -38,9 +38,6 @@
#include "util/log.h"
#include "retroshare/rstypes.h"
/** Rshare's version string */
#define RSHARE_VERSION "0.7"
/** Pointer to this RetroShare application instance. */
#define rApp ((Rshare *)qApp)
@ -62,7 +59,7 @@ public:
~Rshare();
/** Return the version info */
static QString retroshareVersion();
static QString retroshareVersion(bool withRevision);
/** Return the map of command-line arguments and values. */
static QMap<QString, QString> arguments() { return _args; }
@ -110,8 +107,6 @@ public:
static QString style() { return _style; }
/** Returns the current GUI stylesheet. */
static QString stylesheet() { return _stylesheet; }
/** Returns Rshare's application version. */
static QString version() { return RSHARE_VERSION; }
/** Returns Rshare's application startup time. */
static QDateTime startupTime();