Fix build

Change-Id: If4593342cd92716fb2238d633e5b25135a02ce57
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Leander Schulten
2021-02-17 23:26:45 +01:00
parent 34945f84e4
commit 213ad8368a
2 changed files with 4 additions and 3 deletions

View File

@@ -5032,7 +5032,7 @@ bool FakeVimHandler::Private::handleAddSurroundingSubMode(const Input &input)
const int pos = lastPositionInLine(cursorLine() + 1);
// Ignore leading spaces
while ((characterAt(anc) == " " || characterAt(anc) == "\t") && anc != pos) {
while ((characterAt(anc) == ' ' || characterAt(anc) == '\t') && anc != pos) {
anc++;
}