summaryrefslogtreecommitdiffstats
path: root/gtk-gui.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-16 09:09:06 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-05-16 09:10:11 -0700
commit1ba901fed670ecf55e44b0d8aafb78ede53c9105 (patch)
treeda43c705c9d498dffbd876cae1c3e023f9ab6cc1 /gtk-gui.c
parent69da208080bf6af0af3b5a2adfa9347019272a57 (diff)
downloadsubsurface-1ba901fed670ecf55e44b0d8aafb78ede53c9105.tar.gz
Initialize / reset selected_dive to -1
The value of 0 that we used is actually a valid value and could cause confusion. Suggested-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gtk-gui.c')
-rw-r--r--gtk-gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk-gui.c b/gtk-gui.c
index 2797b8fa6..b8d749858 100644
--- a/gtk-gui.c
+++ b/gtk-gui.c
@@ -268,7 +268,7 @@ static void file_close(GtkWidget *w, gpointer data)
mark_divelist_changed(FALSE);
/* clear the selection and the statistics */
- selected_dive = 0;
+ selected_dive = -1;
process_selected_dives();
clear_stats_widgets();
clear_events();