View Single Post
Posts: 1,463 | Thanked: 1,916 times | Joined on Feb 2008 @ Edmonton, AB
#1249
I honestly don't know what you're talking about... look at the source:
Code:
QString OpptimizerUtils::getModuleVersion(){
if(lastOPPtimizerStatus == "ERROR")
return "ERR";
QRegExp rx("\\Wv(\\d+(\\.\\d+)+)");
int pos = rx.indexIn(lastOPPtimizerStatus);
if (pos > -1) {
setKoVersionString(rx.cap(1));
return strKoVersion;
}
else
return "Unknown";
}
If you guys ****ed with the module and bundled it with something else, make sure the version it outputs is compatible with that regex, or fix it yourself... Sorry but I don't have any of the development tools installed anymore.
__________________