]> git.tdb.fi Git - ext/subsurface.git/blobdiff - divelist.h
Minor tweaks to column headers
[ext/subsurface.git] / divelist.h
index c8bc5ff722c17f2a352f1b646d0278bbbad05a94..2d1fd509241193f12b140c431a4eb513b9ca5c89 100644 (file)
@@ -7,13 +7,16 @@ struct DiveList {
        GtkWidget    *tree_view;
        GtkWidget    *container_widget;
        GtkListStore *model;
-       GtkTreeViewColumn *date, *depth, *duration;
-       GtkTreeViewColumn *temperature, *nitrox, *sac;
+       GtkTreeViewColumn *date, *depth, *duration, *location;
+       GtkTreeViewColumn *temperature, *cylinder, *nitrox, *sac;
 };
 
+struct dive;
+
 extern struct DiveList dive_list;
 extern struct DiveList dive_list_create(void);
 extern void dive_list_update_dives(struct DiveList);
 extern void update_dive_list_units(struct DiveList *);
+extern void flush_divelist(struct DiveList *, struct dive *);
 
 #endif