diff options
author | Jens Bache-Wiig <jens.bache-wiig@digia.com> | 2013-09-20 18:23:17 +0200 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2013-09-20 19:55:09 +0200 |
commit | afc201aaf8ebd15b72ac52138cd77c5000167d14 (patch) | |
tree | 33d65d234e4e7d8268c4e13cb718938661e74e6b /tests | |
parent | 2ab5962b7a8af8d63023b8118082b49c33493121 (diff) | |
download | qtquickcontrols-afc201aaf8ebd15b72ac52138cd77c5000167d14.tar.gz qtquickcontrols-afc201aaf8ebd15b72ac52138cd77c5000167d14.tar.bz2 qtquickcontrols-afc201aaf8ebd15b72ac52138cd77c5000167d14.zip |
Make SpinBoxStyle public
While it is still not possible to completely configure the look
and feel, I think we can expose it as is.
Change-Id: If05004ffa4425863fc28094c8c52ba981296882a
Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@digia.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/controls/data/tst_styles.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/controls/data/tst_styles.qml b/tests/auto/controls/data/tst_styles.qml index fc56e48c..d7855426 100644 --- a/tests/auto/controls/data/tst_styles.qml +++ b/tests/auto/controls/data/tst_styles.qml @@ -111,7 +111,7 @@ Item { function test_createSpinBoxStyle() { var control = Qt.createQmlObject( - 'import QtQuick 2.1; import QtQuick.Controls 1.1; import QtQuick.Controls.Private 1.0; \ + 'import QtQuick 2.1; import QtQuick.Controls 1.1; import QtQuick.Controls.Styles 1.1; \ Rectangle { width: 50; height: 50; property Component style: SpinBoxStyle {}}' , container, '') } |