forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.12'
Conflicts: cmake/QtCreatorIDEBranding.cmake qbs/modules/qtc/qtc.qbs qtcreator_ide_branding.pri src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp Change-Id: I34c3d1fd5be90537e37d15e00b1a0d455d1bf81d
This commit is contained in:
@@ -210,9 +210,11 @@ bool QmlJSHighlighter::maybeQmlKeyword(const QStringRef &text) const
|
||||
return true;
|
||||
else if (ch == QLatin1Char('a') && text == QLatin1String("alias"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('c') && text == QLatin1String("component"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('s') && text == QLatin1String("signal"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('r') && text == QLatin1String("readonly"))
|
||||
else if (ch == QLatin1Char('r') && (text == QLatin1String("readonly") || text == QLatin1String("required")))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('i') && text == QLatin1String("import"))
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user