summaryrefslogtreecommitdiff
path: root/tests/auto
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@digia.com>2013-03-06 12:58:37 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-06 14:40:16 +0100
commit58a264a1fc51f10f8f354b3c55d61051295fc233 (patch)
tree5ce77e8ced980cd059964812c90531abea93fa8f /tests/auto
parent813c39f3c4f7748e68e6e3473e3a7c6a34613ed3 (diff)
downloadqtquickcontrols-58a264a1fc51f10f8f354b3c55d61051295fc233.tar.gz
Renamed Button::defaultbutton to Button::isDefault
Change-Id: I5fb48bfc6d0378ba71d914fc48a77a8911ec9b32 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/controls/data/tst_button.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/controls/data/tst_button.qml b/tests/auto/controls/data/tst_button.qml
index d07875f1..7138deed 100644
--- a/tests/auto/controls/data/tst_button.qml
+++ b/tests/auto/controls/data/tst_button.qml
@@ -48,9 +48,9 @@ TestCase {
width:400
height:400
- function test_defaultbutton() {
+ function test_isDefault() {
var tmp = Qt.createQmlObject('import QtQuick.Controls 1.0; Button {id: button1}', testCase, '');
- compare(tmp.defaultbutton, false);
+ compare(tmp.isDefault, false);
}
function test_text() {