summaryrefslogtreecommitdiffstats
path: root/mobile-widgets/qml/main.qml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r--mobile-widgets/qml/main.qml10
1 files changed, 0 insertions, 10 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml
index 0b7870b97..ed56f8ec6 100644
--- a/mobile-widgets/qml/main.qml
+++ b/mobile-widgets/qml/main.qml
@@ -60,21 +60,11 @@ Kirigami.ApplicationWindow {
busy.running = true
}
- function showBusyAndDisconnectModel() { // this is used by QMLManager when operating the filter
- busy.running = true
- diveList.diveListModel = null
- }
-
function hideBusy() {
busy.running = false
showPassiveNotification("", 10) // this hides a notification messssage that's still shown
}
- function hideBusyAndConnectModel() { // this is used by QMLManager when done filtering
- busy.running = false
- diveList.diveListModel = diveTripModel
- }
-
function returnTopPage() {
for (var i=pageStack.depth; i>1; i--) {
pageStack.pop()