-
Technical task
-
Resolution: Unresolved
-
P2: Important
-
None
We currently warn for string to valuetype assignment in bindings, but not in imperative assignments like:
import QtQuick Item { property vector2d myVector: "1.2,1.3" // warns function f() { myVector = "5.6,7.8" // does not warn yet } Component.onCompleted: f() }