projects
/
ohcount
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
OTWO-1213 Works around lost encoding in Ruby/C binding layer
[ohcount]
/
test
/
expected_dir
/
example.qml
1
qml comment // Just an example of QML file...
2
qml blank
3
qml code import QtQuick 2.0
4
qml blank
5
qml code Rectangle {
6
qml code width: 200
7
qml code height: 200
8
qml code color: "crimson"
9
qml blank
10
qml code MouseArea {
11
qml code anchors.fill: parent
12
qml code onClicked: {
13
qml comment // Was clicked
14
qml code Qt.quit();
15
qml code }
16
qml code }
17
qml code }