qtdeclarative/tests/auto/qml/qmlcppcodegen/data/notEqualsInt.qml

16 lines
247 B
QML

import QtQml
QtObject {
property int someValue: 42
function foo() {
if (someValue != 0) {
t.text = "Bar";
}
}
property QtObject tt: QtObject {
id: t
property string text: "Foo"
}
}