diff options
Diffstat (limited to 'src/qt/utilitydialog.cpp')
-rw-r--r-- | src/qt/utilitydialog.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/qt/utilitydialog.cpp b/src/qt/utilitydialog.cpp index 05a01c7445..a96b9d6c0b 100644 --- a/src/qt/utilitydialog.cpp +++ b/src/qt/utilitydialog.cpp @@ -33,7 +33,16 @@ void AboutDialog::setModel(ClientModel *model) { if(model) { - ui->versionLabel->setText(model->formatFullVersion()); + QString version = model->formatFullVersion(); + /* On x86 add a bit specifier to the version so that users can distinguish between + * 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious. + */ +#if defined(__x86_64__) + version += " (64-bit)"; +#elif defined(__i386__ ) + version += " (32-bit)"; +#endif + ui->versionLabel->setText(version); } } |