summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.cpp
diff options
context:
space:
mode:
authorGravatar Lubomir I. Ivanov <neolit123@gmail.com>2013-06-27 15:33:44 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-06-27 20:57:11 +0800
commitbdd89f0e7ab179f74051ffec9f3ecebd8443af14 (patch)
tree1e7b65773206dc0045541d212047010b20de065c /qt-ui/mainwindow.cpp
parent8678e2d57c6e456952dc2d75857f60b0129ed0ff (diff)
downloadsubsurface-bdd89f0e7ab179f74051ffec9f3ecebd8443af14.tar.gz
Coordinate some mark_divelist_changed() calls
1) Make a call mark_divelist_changed(TRUE) when the user adds new cylinder or weight entries. 2) Call mark_divelist_changed(FALSE) in MainWindow::on_actionClose_triggered() so that each time after a file is closed or a new one is created it does not ask immediately the user for a save confirmation for the blank file/divelist. 3) Call mark_divelist_changed(TRUE) once a dive's geo location has changed in GlobeGPS::changeDiveGeoPosition(). Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r--qt-ui/mainwindow.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp
index 43376f9ac..3f16b50e5 100644
--- a/qt-ui/mainwindow.cpp
+++ b/qt-ui/mainwindow.cpp
@@ -166,6 +166,7 @@ void MainWindow::on_actionClose_triggered()
ui->ListWidget->reload(DiveTripModel::TREE);
ui->globe->reload();
setTitle(MWTF_DEFAULT);
+ mark_divelist_changed(FALSE);
clear_events();
}