diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-10-12 14:25:22 +0200 |
---|---|---|
committer | Jan Mulder <jlmulder@xs4all.nl> | 2017-10-17 15:32:27 +0200 |
commit | d623eccdefa8f19da76bd853ec16cba108aa37d1 (patch) | |
tree | 4e222c2845567b2f3c83836c1f34085bf20f627f /mobile-widgets/qml/GpsList.qml | |
parent | f7da06c76bfab30fb21224955626ba74095251ba (diff) | |
download | subsurface-d623eccdefa8f19da76bd853ec16cba108aa37d1.tar.gz |
mobile: silence deprecated messages in logging about Kirigami.Label
Commit 8f6827ab122 brought a new SHA for Kirigami, but that introduces
a very noisy logging of "Kirigami.Label is deprecated. Use
QtQuickControls2.Label instead".
So, thats what done here.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml/GpsList.qml')
-rw-r--r-- | mobile-widgets/qml/GpsList.qml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mobile-widgets/qml/GpsList.qml b/mobile-widgets/qml/GpsList.qml index 5829c5614..53249990d 100644 --- a/mobile-widgets/qml/GpsList.qml +++ b/mobile-widgets/qml/GpsList.qml @@ -1,6 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 import QtQuick 2.6 -import QtQuick.Controls 2.0 +import QtQuick.Controls 2.0 as Controls import QtQuick.Window 2.2 import QtQuick.Dialogs 1.2 import QtQuick.Layouts 1.1 @@ -23,48 +23,48 @@ Kirigami.ScrollablePage { columns: 4 id: timeAndName width: parent.width - Kirigami.Label { + Controls.Label { text: qsTr('Date: ') color: subsurfaceTheme.textColor opacity: 0.6 font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: date color: subsurfaceTheme.textColor Layout.preferredWidth: Math.max(parent.width / 5, paintedWidth) font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: qsTr('Name: ') color: subsurfaceTheme.textColor opacity: 0.6 font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: name color: subsurfaceTheme.textColor Layout.preferredWidth: Math.max(parent.width / 5, paintedWidth) font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: qsTr('Latitude: ') color: subsurfaceTheme.textColor opacity: 0.6 font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: latitude color: subsurfaceTheme.textColor font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: qsTr('Longitude: ') color: subsurfaceTheme.textColor opacity: 0.6 font.pointSize: subsurfaceTheme.smallPointSize } - Kirigami.Label { + Controls.Label { text: longitude color: subsurfaceTheme.textColor font.pointSize: subsurfaceTheme.smallPointSize |