diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-05 23:14:42 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-05 23:14:42 -0800 |
commit | b08f51cfc60cb2c0fab4954f772a4698498fee05 (patch) | |
tree | 5c662bc1b6afe3716cbf3934986005f83b3176ba /info.c | |
parent | b1dc9bf26d8538001a120c8c1635a12129f13c8c (diff) | |
download | subsurface-b08f51cfc60cb2c0fab4954f772a4698498fee05.tar.gz |
Add new gases to the combo box in dive plan entry
Once again Gtk does everything it can to make our lives miserable. It
requires major hackery to be able to add new gases to the drop down lists
"on the fly". Right now this only works if you edit the gas and then use
Tab to move to the next field.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -352,7 +352,7 @@ static int match_list(GtkListStore *list, const char *string) return found_string_entry; } -static void add_string_list_entry(const char *string, GtkListStore *list) +void add_string_list_entry(const char *string, GtkListStore *list) { GtkTreeIter *iter, loc; |