aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/util/qquickbind.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quick/util/qquickbind.cpp')
-rw-r--r--src/quick/util/qquickbind.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/quick/util/qquickbind.cpp b/src/quick/util/qquickbind.cpp
index 0a1cd27a76..3ccd5222f9 100644
--- a/src/quick/util/qquickbind.cpp
+++ b/src/quick/util/qquickbind.cpp
@@ -111,7 +111,7 @@ public:
The above example will produce a warning whenever we release the mouse, as the value
of the binding is undefined when the mouse isn't pressed. We can use the Binding
- element to rewrite the above code and avoid the warning.
+ type to rewrite the above code and avoid the warning.
\qml
Binding on value {
@@ -120,7 +120,7 @@ public:
}
\endqml
- The Binding element will also restore any previously set direct bindings on
+ The Binding type will also restore any previously set direct bindings on
the property. In that sense, it functions much like a simplified State.
\qml