diff options
author | Thiago Macieira <thiago@macieira.org> | 2013-11-14 18:57:09 -0800 |
---|---|---|
committer | Thiago Macieira <thiago@macieira.org> | 2013-12-03 13:53:00 -0800 |
commit | a1972bc3433d2e412147a6925787ffee66adcb4b (patch) | |
tree | f91c750dcbdb00b0c234046992838d25eb7d8b96 /qt-ui/mainwindow.cpp | |
parent | bffb384c0fecdef515d7cc10a5f7e44ddbaa2aa8 (diff) | |
download | subsurface-a1972bc3433d2e412147a6925787ffee66adcb4b.tar.gz |
Implement the network part of the support for divelogs.de
This implements support for:
* uploading a zip file containing dives - untested
(the zip file must have been prepared elsewhere)
* downloading the dive list and the dive XML files
The networking part is finished, but it's missing the actual import of
the XML files sent by divelogs.de.
Signed-off-by: Thiago Macieira <thiago@macieira.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 101219725..b216240fa 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -269,7 +269,7 @@ void MainWindow::on_actionDownloadWeb_triggered() void MainWindow::on_actionDivelogs_de_triggered() { - DivelogsDeWebServices::instance()->exec(); + DivelogsDeWebServices::instance()->downloadDives(); } void MainWindow::on_actionEditDeviceNames_triggered() |