diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-30 18:21:08 +0900 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-30 18:21:08 +0900 |
commit | 2a4d981d0904230a0fb428b9acc77f11ddb7ad82 (patch) | |
tree | 8494a22a14cbc54967f65e5f637d21f44322e245 /qt-ui/downloadfromdivecomputer.h | |
parent | 56eaea6993f8a0ae72f7073a5f024007cdb33cc1 (diff) | |
download | subsurface-2a4d981d0904230a0fb428b9acc77f11ddb7ad82.tar.gz |
Fixed running the Download dialog multiple times
We never reset the 'downloading' variable.
Solved-by: Thiago Macieira <thiago@macieira.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/downloadfromdivecomputer.h')
-rw-r--r-- | qt-ui/downloadfromdivecomputer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/downloadfromdivecomputer.h b/qt-ui/downloadfromdivecomputer.h index 27e64c96f..de80c4028 100644 --- a/qt-ui/downloadfromdivecomputer.h +++ b/qt-ui/downloadfromdivecomputer.h @@ -43,6 +43,7 @@ public slots: void on_ok_clicked(); void on_cancel_clicked(); void runDialog(); + void stoppedDownloading(); void on_vendor_currentIndexChanged(const QString& vendor); private: Ui::DownloadFromDiveComputer *ui; |