forked from qt-creator/qt-creator
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:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user