As written in This stackoverflow post, the order in which the properties are defined is not deterministic.
This could lead to a problem, for example in Tabata.qml:
property variant value1ReturnFromDB: DB.getDatabaseValuesFor(page,"value1")
...
property int value1: value1ReturnFromDB[0]
It is possible that the assignment of value1 will be executed before value1ReturnFromDB, making value1 undefined even if the database-call succeeded with the correct data.
As written in This stackoverflow post, the order in which the properties are defined is not deterministic. This could lead to a problem, for example in
Tabata.qml
:It is possible that the assignment of
value1
will be executed beforevalue1ReturnFromDB
, makingvalue1
undefined even if the database-call succeeded with the correct data.