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);
|
const int pos = lastPositionInLine(cursorLine() + 1);
|
||||||
|
|
||||||
// Ignore leading spaces
|
// Ignore leading spaces
|
||||||
while ((characterAt(anc) == " " || characterAt(anc) == "\t") && anc != pos) {
|
while ((characterAt(anc) == ' ' || characterAt(anc) == '\t') && anc != pos) {
|
||||||
anc++;
|
anc++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -39,10 +39,11 @@
|
|||||||
#include <utils/algorithm.h>
|
#include <utils/algorithm.h>
|
||||||
#include <utils/qtcassert.h>
|
#include <utils/qtcassert.h>
|
||||||
|
|
||||||
#include <QVariant>
|
#include <QIODevice>
|
||||||
#include <QMetaProperty>
|
|
||||||
#include <QLoggingCategory>
|
#include <QLoggingCategory>
|
||||||
|
#include <QMetaProperty>
|
||||||
#include <QMimeData>
|
#include <QMimeData>
|
||||||
|
#include <QVariant>
|
||||||
|
|
||||||
namespace QmlDesigner {
|
namespace QmlDesigner {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user