aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/calendar/WeekNumberColumn.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/calendar/WeekNumberColumn.qml')
-rw-r--r--src/imports/calendar/WeekNumberColumn.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/calendar/WeekNumberColumn.qml b/src/imports/calendar/WeekNumberColumn.qml
index 732a914a..3d3092fe 100644
--- a/src/imports/calendar/WeekNumberColumn.qml
+++ b/src/imports/calendar/WeekNumberColumn.qml
@@ -44,7 +44,7 @@ AbstractWeekNumberColumn {
property Component delegate: Text {
text: model.weekNumber
font.bold: true
- color: control.Style.textColor
+ color: control.Theme.textColor
width: column.width ? column.width : implicitWidth
height: column.height ? column.height / 6 : implicitHeight
horizontalAlignment: Text.AlignHCenter
@@ -57,8 +57,8 @@ AbstractWeekNumberColumn {
implicitWidth: Math.max(background ? background.implicitWidth : 0, contentWidth + leftPadding + rightPadding)
implicitHeight: Math.max(background ? background.implicitHeight : 0, contentHeight + topPadding + bottomPadding)
- leftPadding: Style.padding
- rightPadding: Style.padding
+ leftPadding: Theme.padding
+ rightPadding: Theme.padding
contentItem: Column {
id: column