diff options
| author | Aurelian R <arusanu@gmail.com> | 2026-05-12 00:48:51 +0300 |
|---|---|---|
| committer | Aurelian R <arusanu@gmail.com> | 2026-05-12 00:48:51 +0300 |
| commit | 9a0d8aaf18c6683af011d7bd005c30466a1e24d8 (patch) | |
| tree | 3ae3724e8b523d9a77ea522a9cd8ec191b4e6b6f /Components | |
| parent | 74b89b4428f296be098a6cad061d356ff026a9ef (diff) | |
| download | mga-coffee-9a0d8aaf18c6683af011d7bd005c30466a1e24d8.tar mga-coffee-9a0d8aaf18c6683af011d7bd005c30466a1e24d8.tar.gz mga-coffee-9a0d8aaf18c6683af011d7bd005c30466a1e24d8.tar.bz2 mga-coffee-9a0d8aaf18c6683af011d7bd005c30466a1e24d8.tar.xz mga-coffee-9a0d8aaf18c6683af011d7bd005c30466a1e24d8.zip | |
Qt6 - fix deprecated date format type.
Diffstat (limited to 'Components')
| -rw-r--r-- | Components/Clock.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Components/Clock.qml b/Components/Clock.qml index f03d0bf..a9c4286 100644 --- a/Components/Clock.qml +++ b/Components/Clock.qml @@ -22,7 +22,7 @@ * ***************************************************************************/ -import QtQuick 2.0 +import QtQuick 2.15 Column { id: container @@ -54,7 +54,7 @@ Column { color: container.color - text : Qt.formatDate(container.dateTime, Qt.DefaultLocaleLongDate) + text : Qt.formatDate(container.dateTime, Locale.LongFormat) font.pointSize: 24 } |
