diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2018-10-12 14:57:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-12 08:22:26 -0700 |
commit | 4263d1c3f57bd8080f821c564018d0a6f0b5cb3c (patch) | |
tree | 5de3d8684658630daf321eec17455098c99420c9 /mobile-widgets/qml/DownloadFromDiveComputer.qml | |
parent | 5d1c30acbf9dc220728fa9c04603d45c75f3f3b2 (diff) | |
download | subsurface-4263d1c3f57bd8080f821c564018d0a6f0b5cb3c.tar.gz |
QML, cleanup: remove stackView
There is no reason (any more?) to have a property defined
that basically renames the global pageStack into a local
pageView. Just cleanup.
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'mobile-widgets/qml/DownloadFromDiveComputer.qml')
-rw-r--r-- | mobile-widgets/qml/DownloadFromDiveComputer.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DownloadFromDiveComputer.qml b/mobile-widgets/qml/DownloadFromDiveComputer.qml index 0b7cb0ca6..142465f87 100644 --- a/mobile-widgets/qml/DownloadFromDiveComputer.qml +++ b/mobile-widgets/qml/DownloadFromDiveComputer.qml @@ -292,7 +292,7 @@ Kirigami.Page { onClicked: { manager.cancelDownloadDC() if (!progressBar.visible) { - stackView.pop(); + pageStack.pop(); download.text = qsTr("Download") divesDownloaded = false manager.progressMessage = "" @@ -356,7 +356,7 @@ Kirigami.Page { manager.saveChangesLocal() diveModel.clear() diveModel.addAllDives() - stackView.pop(); + pageStack.pop(); download.text = qsTr("Download") divesDownloaded = false } |