]> git.tdb.fi Git - ext/subsurface.git/blobdiff - divelist.h
Attempt to get the location column to resize in a sensible way
[ext/subsurface.git] / divelist.h
index e0ab1137cc105627b681a28df57f62a4eb71581d..2d1fd509241193f12b140c431a4eb513b9ca5c89 100644 (file)
@@ -8,12 +8,15 @@ struct DiveList {
        GtkWidget    *container_widget;
        GtkListStore *model;
        GtkTreeViewColumn *date, *depth, *duration, *location;
-       GtkTreeViewColumn *temperature, *nitrox, *sac;
+       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