Details
-
Bug
-
Resolution: Done
-
P2: Important
-
Qt Creator 2.8.0
-
None
-
Qt 5.1.0, Qt Creator 2.8.0, Mac OS X 10.7.5
-
a1e4efe2e3e10946ba250775ca3088d8368fc957
Description
Qt Creator doesn't seem to know about a few Qt Quick 2.0 basic types. Using the one of the types vector2d, vector4d, quaternion or matrix4x4 as property type causes it to be marked as error M304. The error also shows up when checks (Tools->QML/JS->Run Checks) are run. The full error text is Invalid property type 'vector2d'. (M304).
Example:
import QtQuick 2.0
Item {
property vector2d v
}