Initial import from the monolithic Qt.
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qdeclarativeecmascript / data / scriptConnect.4.qml
1 import Qt.test 1.0
2 import QtQuick 1.0
3
4 MyQmlObject { 
5     property bool test: false
6
7     id: root
8
9     Component.onCompleted: root.argumentSignal.connect(methodNoArgs);
10 }
11
12