Fixes recursion bug in disambiguate_in().
[ohcount] / test / src_dir / example.qml
1 // Just an example of QML file...
2
3 import QtQuick 2.0
4
5 Rectangle {
6     width: 200
7     height: 200
8     color: "crimson"
9
10     MouseArea {
11         anchors.fill: parent
12         onClicked: {
13             // Was clicked
14             Qt.quit();
15         }
16     }
17 }