summaryrefslogtreecommitdiffstats
path: root/qt-mobile/qmlmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/qmlmanager.cpp')
-rw-r--r--qt-mobile/qmlmanager.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/qt-mobile/qmlmanager.cpp b/qt-mobile/qmlmanager.cpp
index 8cefbe95f..3e09be7c3 100644
--- a/qt-mobile/qmlmanager.cpp
+++ b/qt-mobile/qmlmanager.cpp
@@ -58,7 +58,7 @@ void QMLManager::loadDives()
showMessage(get_error_string());
return;
}
- showMessage("got email / password");
+ clear_dive_file_data();
QByteArray fileNamePrt = QFile::encodeName(url);
int error = parse_file(fileNamePrt.data());
@@ -70,11 +70,13 @@ void QMLManager::loadDives()
showMessage(get_error_string());
}
process_dives(false, false);
+
int i;
struct dive *d;
- for_each_dive(i, d)
- DiveListModel::instance()->addDive(d);
+ for_each_dive(i, d) {
+ DiveListModel::instance()->addDive(d);
+ }
}
void QMLManager::commitChanges(QString diveId, QString suit, QString buddy, QString diveMaster, QString notes)