Fixed online time in profile widget.

Fixed width of settings dialog.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6329 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2013-04-22 21:12:38 +00:00
parent fea35e1e3c
commit dd0ef691c5
6 changed files with 76 additions and 40 deletions

View file

@ -108,6 +108,8 @@ public:
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();
/** Returns the location Rshare uses for its data files. */
static QString dataDirectory();
@ -173,6 +175,7 @@ private:
static QString _language; /**< The current language. */
static QString _dateformat; /**< The format for dates in feed items etc. */
static Log _log; /**< Logs debugging messages to file or stdout. */
static QDateTime mStartupTime; // startup time
static bool useConfigDir;
static QString configDir;
@ -180,4 +183,3 @@ private:
};
#endif