diff options
author | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-08-06 15:40:50 +0200 |
---|---|---|
committer | Philip Kaufmann <phil.kaufmann@t-online.de> | 2015-08-07 14:01:49 +0200 |
commit | 54bd28fa758d9753464b3eb07d203521b50de1c6 (patch) | |
tree | 7377907272b3fbea46e724d9418a133aa114a178 /src/qt/clientmodel.cpp | |
parent | 0c465f5e6035c6df2868cbd5b940f9b24c07293f (diff) |
[Qt] show client user agent in debug window
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r-- | src/qt/clientmodel.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index 41dc2ea77e..97d6711560 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -181,6 +181,11 @@ QString ClientModel::formatFullVersion() const return QString::fromStdString(FormatFullVersion()); } +QString ClientModel::formatSubVersion() const +{ + return QString::fromStdString(strSubVersion); +} + QString ClientModel::formatBuildDate() const { return QString::fromStdString(CLIENT_DATE); |