forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/2.8'
This commit is contained in:
@@ -251,8 +251,12 @@ bool Highlighter::maybeQmlBuiltinType(const QStringRef &text) const
|
||||
return true;
|
||||
else if (ch == QLatin1Char('l') && text == QLatin1String("list"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('m') && text == QLatin1String("matrix4x4"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('p') && text == QLatin1String("point"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('q') && text == QLatin1String("quaternion"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('r') && text == QLatin1String("real"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('r') && text == QLatin1String("rect"))
|
||||
@@ -269,8 +273,12 @@ bool Highlighter::maybeQmlBuiltinType(const QStringRef &text) const
|
||||
return true;
|
||||
else if (ch == QLatin1Char('v') && text == QLatin1String("var"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('v') && text == QLatin1String("vector2d"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('v') && text == QLatin1String("vector3d"))
|
||||
return true;
|
||||
else if (ch == QLatin1Char('v') && text == QLatin1String("vector4d"))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user