X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=divelist.h;h=25de6837a6f9c38332d3a3659fffa0a9ee613a27;hb=9cf8d98711dff888f5bfa8efd52ca7b8cf8bfa07;hp=46598b14ffbac0c1715b188ca7851dd5bb5877a6;hpb=87e8ff9c3e16e2786a9ba9d551e52cd8b9dd9728;p=ext%2Fsubsurface.git diff --git a/divelist.h b/divelist.h index 46598b1..25de683 100644 --- a/divelist.h +++ b/divelist.h @@ -3,20 +3,11 @@ #include -struct DiveList { - GtkWidget *tree_view; - GtkWidget *container_widget; - GtkListStore *model; - GtkTreeViewColumn *date, *depth, *duration, *location; - GtkTreeViewColumn *temperature, *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 *); +extern GtkWidget *dive_list_create(void); +extern void dive_list_update_dives(void); +extern void update_dive_list_units(void); +extern void flush_divelist(struct dive *); #endif