aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/types/qqmlbind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/types/qqmlbind.cpp')
-rw-r--r--src/qml/types/qqmlbind.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qml/types/qqmlbind.cpp b/src/qml/types/qqmlbind.cpp
index f6da64f913..88080b1895 100644
--- a/src/qml/types/qqmlbind.cpp
+++ b/src/qml/types/qqmlbind.cpp
@@ -113,12 +113,12 @@ public:
of the binding is undefined when the mouse isn't pressed. We can use the Binding
type to rewrite the above code and avoid the warning.
- \qml
+ \code
Binding on value {
when: mouse.pressed
value: mouse.mouseX
}
- \endqml
+ \endcode
The Binding type will also restore any previously set direct bindings on
the property. In that sense, it functions much like a simplified State.