You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
716 B
27 lines
716 B
10 years ago
|
From c7572aa01c9d36124eeacde54f37dcbd4bab6433 Mon Sep 17 00:00:00 2001
|
||
|
From: Jerome Leclanche <jerome@leclan.ch>
|
||
|
Date: Thu, 16 Jul 2015 16:40:59 +0200
|
||
|
Subject: [PATCH 69/70] Clock: Do not hardcode date format
|
||
|
|
||
|
Fixes #384
|
||
|
---
|
||
|
components/2.0/Clock.qml | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/components/2.0/Clock.qml b/components/2.0/Clock.qml
|
||
|
index 2f2d811..f03d0bf 100644
|
||
|
--- a/components/2.0/Clock.qml
|
||
|
+++ b/components/2.0/Clock.qml
|
||
|
@@ -54,7 +54,7 @@ Column {
|
||
|
|
||
|
color: container.color
|
||
|
|
||
|
- text : Qt.formatDate(container.dateTime, "dddd, MMM dd")
|
||
|
+ text : Qt.formatDate(container.dateTime, Qt.DefaultLocaleLongDate)
|
||
|
|
||
|
font.pointSize: 24
|
||
|
}
|
||
|
--
|
||
|
2.4.3
|
||
|
|