Fix reversed logic in EditorManager::openInExternalEditor().

In case the variable char was not in use, %[a-z] would result
in [a-z]%.
This commit is contained in:
Daniel Molkentin
2010-01-04 15:29:54 +01:00
parent 77761b37c3
commit 9c21224ace

View File

@@ -1789,7 +1789,7 @@ void EditorManager::openInExternalEditor()
s = c; s = c;
else { else {
s = QLatin1Char('%'); s = QLatin1Char('%');
cmd += c; s += c;
} }
cmd += s; cmd += s;
continue; continue;