mirror of
https://github.com/ModOrganizer2/modorganizer-nxmhandler.git
synced 2026-07-27 14:03:41 -07:00
fixed ambiguous comparison, it's a QChar, not a string
This commit is contained in:
@@ -161,7 +161,7 @@ QStringList HandlerStorage::stripCall(const QString &call)
|
||||
}
|
||||
|
||||
// Space outside a quote means the end of a word
|
||||
if (*iter == " " && !in_quote) {
|
||||
if (*iter == ' ' && !in_quote) {
|
||||
// Don't process stuff like %1, %2, etc.
|
||||
if (!word.contains(invalid_arguments)) {
|
||||
results << word;
|
||||
|
||||
Reference in New Issue
Block a user