diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-07 08:42:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-07 08:42:05 -0700 |
commit | 378ac0d44a7867a01cc8a23c05243cea53bab5de (patch) | |
tree | 51795074547384af8857a78453684ccc56a85946 /divelist.h | |
parent | 7bbdea19ed0c634b4a990e49be7a2c8936a61818 (diff) | |
download | subsurface-378ac0d44a7867a01cc8a23c05243cea53bab5de.tar.gz |
Add GtkTreeViewColumn information to 'struct DiveList'
We will need the column information in order to update the naming when
the units change.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'divelist.h')
-rw-r--r-- | divelist.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/divelist.h b/divelist.h index dc573d770..da3bfc96b 100644 --- a/divelist.h +++ b/divelist.h @@ -7,6 +7,7 @@ struct DiveList { GtkWidget *tree_view; GtkWidget *container_widget; GtkListStore *model; + GtkTreeViewColumn *date, *depth, *duration; }; extern int selected_dive; |