forked from qt-creator/qt-creator
Fix build
Change-Id: If4593342cd92716fb2238d633e5b25135a02ce57 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -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++;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user