summaryrefslogtreecommitdiff
path: root/src/controls/Styles/Android/CalendarStyle.qml
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2017-05-29 14:57:07 +0200
committerMitch Curtis <mitch.curtis@qt.io>2017-06-16 12:15:29 +0000
commitd13e4db9d74aefc0bd08ca946b789155a11361fb (patch)
treebd99878b498975662042c51a0ee7b9fdaf9245c1 /src/controls/Styles/Android/CalendarStyle.qml
parent9f085b889524a80d4064d6ac01dbdc817bb31060 (diff)
downloadqtquickcontrols-d13e4db9d74aefc0bd08ca946b789155a11361fb.tar.gz
Calendar: make locale property public
This is useful to set a locale on a specific calendar, as opposed to using the application-wide default. plugins.qmltypes was also updated. [ChangeLog][Calendar] Added locale property, which affects which day is shown as the first day of the week, as well as date and day name localization. Task-number: QTBUG-60217 Change-Id: I113298a3f3b6dd407d26f3f55ed6973e73ab6a4c Reviewed-by: J-P Nurmi <jpnurmi@qt.io>
Diffstat (limited to 'src/controls/Styles/Android/CalendarStyle.qml')
-rw-r--r--src/controls/Styles/Android/CalendarStyle.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/Styles/Android/CalendarStyle.qml b/src/controls/Styles/Android/CalendarStyle.qml
index 449cc497..52b02bff 100644
--- a/src/controls/Styles/Android/CalendarStyle.qml
+++ b/src/controls/Styles/Android/CalendarStyle.qml
@@ -83,7 +83,7 @@ CalendarStyle {
LabelStyle {
id: dayOfWeek
anchors.centerIn: parent
- text: control.__locale.dayName(styleData.dayOfWeek, control.dayOfWeekFormat)
+ text: control.locale.dayName(styleData.dayOfWeek, control.dayOfWeekFormat)
focused: control.activeFocus
window_focused: control.Window.active
styleDef: AndroidStyle.styleDef.calendarViewStyle.CalendarView_weekDayTextAppearance