Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
14 lines
193 B
QML
14 lines
193 B
QML
import QtQuick 1.0
|
|
|
|
QtObject {
|
|
property int notifyCount: 0
|
|
|
|
property variant foo
|
|
onFooChanged: notifyCount++
|
|
|
|
Component.onCompleted: {
|
|
foo = 1;
|
|
foo = 1;
|
|
}
|
|
}
|