diff options
| author | Philip Kaufmann <[email protected]> | 2015-08-06 15:40:50 +0200 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2015-08-07 14:01:49 +0200 |
| commit | 54bd28fa758d9753464b3eb07d203521b50de1c6 (patch) | |
| tree | 7377907272b3fbea46e724d9418a133aa114a178 /src/qt/clientmodel.cpp | |
| parent | Merge pull request #4587 (diff) | |
| download | discoin-54bd28fa758d9753464b3eb07d203521b50de1c6.tar.xz discoin-54bd28fa758d9753464b3eb07d203521b50de1c6.zip | |
[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 41dc2ea77..97d671156 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); |