Fix compilation of previous commit

This commit is contained in:
con
2010-12-06 13:03:17 +01:00
parent 592b44e9b5
commit 46a1a6b34d

View File

@@ -999,7 +999,7 @@ QStringList QtVersionManager::splitLine(const QString &line)
currentWord += line.at(i);
escape = false;
} else if (line.at(i) == ' ') {
if (!currentWord.iSEmpty()) {
if (!currentWord.isEmpty()) {
results << currentWord;
currentWord.clear();
}