summaryrefslogtreecommitdiff
path: root/src/controls/Styles/Desktop
diff options
context:
space:
mode:
authorDavid Edmundson <davidedmundson@kde.org>2014-01-15 19:41:35 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-16 18:06:33 +0100
commit66e1e0fee78f2b0a4412927ad39df4be564d15d1 (patch)
tree0d3c1b193954176de6142930e011aa49286153e9 /src/controls/Styles/Desktop
parentbc973dcf2163b25f2db74d974b252384bbee8d80 (diff)
downloadqtquickcontrols-66e1e0fee78f2b0a4412927ad39df4be564d15d1.tar.gz
Fix typo in property in ComboBoxStyle
drowDownButtonWidth seems to be a typo in an exposed property name. In order to keep compatibility an (undocumented) alias is added. Change-Id: I2ab04b3518325e339c31cf6f403c488256a4aabe Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
Diffstat (limited to 'src/controls/Styles/Desktop')
-rw-r--r--src/controls/Styles/Desktop/ComboBoxStyle.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/Styles/Desktop/ComboBoxStyle.qml b/src/controls/Styles/Desktop/ComboBoxStyle.qml
index b36b4c1d..ef198d5e 100644
--- a/src/controls/Styles/Desktop/ComboBoxStyle.qml
+++ b/src/controls/Styles/Desktop/ComboBoxStyle.qml
@@ -46,7 +46,7 @@ import "." as Desktop
Style {
readonly property ComboBox control: __control
- property int drowDownButtonWidth: 24
+ property int dropDownButtonWidth: 24
property Component panel: Item {
property bool popup: !!styleItem.styleHint("comboboxpopup")