diff options
Diffstat (limited to 'doc/src/declarative/snippets/qtbinding/stopwatch/main.qml')
-rw-r--r-- | doc/src/declarative/snippets/qtbinding/stopwatch/main.qml | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/doc/src/declarative/snippets/qtbinding/stopwatch/main.qml b/doc/src/declarative/snippets/qtbinding/stopwatch/main.qml deleted file mode 100644 index 2efa542..0000000 --- a/doc/src/declarative/snippets/qtbinding/stopwatch/main.qml +++ /dev/null @@ -1,18 +0,0 @@ -//![0] -import Qt 4.7 - -Rectangle { - width: 300 - height: 300 - - MouseArea { - anchors.fill: parent - onClicked: { - if (stopwatch.isRunning()) - stopwatch.stop() - else - stopwatch.start(); - } - } -} -//![0] |