Fix appending revision to version number

This commit is contained in:
Andrew Nelless 2017-05-09 12:32:46 +01:00
parent 6784c1df66
commit 54632e2ceb
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ AboutDialog::AboutDialog(QWidget* parent, const QString& synergyApp) :
QString version = m_versionChecker.getVersion();
version = version + '-' + SYNERGY_VERSION_STAGE;
#ifdef SYNERGY_REVISION
version += '-' + SYNERGY_REVISION;
version += '-';
version += SYNERGY_REVISION;
#endif
m_pLabelSynergyVersion->setText(version);