Index: main.cpp =================================================================== diff -u -r7e503c5459ec77a2816d6c7789da9b206cedbe8a -rfd79fadd4f42518f80e2cf3c19eec5a516ed75d4 --- main.cpp (.../main.cpp) (revision 7e503c5459ec77a2816d6c7789da9b206cedbe8a) +++ main.cpp (.../main.cpp) (revision fd79fadd4f42518f80e2cf3c19eec5a516ed75d4) @@ -275,15 +275,16 @@ } if ( ! ver_branch.isEmpty()) ver_branch += '.'; - QCoreApplication::setApplicationVersion( - QString("%1%2%3%4%5.%6") - .arg(ver_branch) - .arg(ver_major) - .arg(ver_minor) - .arg(ver_micro) - .arg(ver_revis) - .arg(ver_comp ) - ); + ver_comp = "." + ver_comp; + QString version = ""; + version += ver_branch ; + version += ver_major ; + version += ver_minor ; + version += ver_micro ; + version += ver_revis ; // build number + // TODO: version += ver_comp ; // removed for the phase 1 version + + QCoreApplication::setApplicationVersion(version); } #ifdef UNIT_TEST