diff options
Diffstat (limited to 'mobile-widgets')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 12dad8086..10f6f11e5 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -452,9 +452,9 @@ void QMLManager::selectSwipeRow(int row) void QMLManager::updateAllGlobalLists() { - buddyModel.updateModel(); emit buddyListChanged(); - suitModel.updateModel(); emit suitListChanged(); - divemasterModel.updateModel(); emit divemasterListChanged(); + emit buddyListChanged(); + emit suitListChanged(); + emit divemasterListChanged(); // TODO: It would be nice if we could export the list of locations via model/view instead of a Q_PROPERTY emit locationListChanged(); } |