summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2019-10-02 14:45:05 +0200
committerUlf Hermann <ulf.hermann@qt.io>2019-10-04 11:15:31 +0200
commit59264fc24e3806a7e43379a2b8c610148f89cccb (patch)
treefb8ea77d461c5c68a98b59b9bd4e152606795028 /tests
parent6eac099fa98b6dbe5a01ad90e4a1348729b1332b (diff)
downloadqtquickcontrols-59264fc24e3806a7e43379a2b8c610148f89cccb.tar.gz
Make restoreMode on all Binding elements explicit
The default is going to change in 5.15. Change-Id: Ib17500791476bd45ed2c7c3736186897fb63d7a0 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml b/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml
index 59127155..7c9ebeac 100644
--- a/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml
+++ b/tests/auto/controls/data/toolbutton/tb_checkableActionWithinExclusiveGroup.qml
@@ -48,6 +48,7 @@
**
****************************************************************************/
+import QtQml 2.14 as Qml
import QtQuick 2.2
import QtQuick.Controls 1.2
@@ -75,15 +76,17 @@ Row {
checked: textinput.font.underline
}
}
- Binding {
+ Qml.Binding {
target: textinput
property: "font.bold"
value: bold.checked
+ restoreMode: Binding.RestoreBinding
}
- Binding {
+ Qml.Binding {
target: textinput
property: "font.underline"
value: underline.checked
+ restoreMode: Binding.RestoreBinding
}
ToolButton {
id: _tb1