Fix appending revision to version number
This commit is contained in:
parent
6784c1df66
commit
54632e2ceb
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue