diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-19 16:58:46 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-09-19 16:58:46 -0700 |
commit | 6279d743c425addf5a094634f6043393e9acd32d (patch) | |
tree | 082d0a11fb605e5172cf24a950e4481f206c8282 /divelist.c | |
parent | 87e8ff9c3e16e2786a9ba9d551e52cd8b9dd9728 (diff) | |
download | subsurface-6279d743c425addf5a094634f6043393e9acd32d.tar.gz |
Oops, fix typo. EAN, not EAD
Typo turned EAN (Enriched Air Nitrox) to EAD. Which does mean something
too, just to confuse people - but while it's still nitrox-related, it's
entirely the wrong thing (Equivalent Air Depth). I don't think anybody
would ever care to see *that*. With computers, why would you care?
Anyway, Dirk noticed it, and suggested I just use O2% instead. It's not
like EAN is all that readable either.
Reported-by: Dirk Hohndel <dirk@hohndel.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'divelist.c')
-rw-r--r-- | divelist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/divelist.c b/divelist.c index 9c1510664..f390b49ea 100644 --- a/divelist.c +++ b/divelist.c @@ -423,7 +423,7 @@ struct DiveList dive_list_create(void) renderer = gtk_cell_renderer_text_new(); dive_list.nitrox = col = gtk_tree_view_column_new(); - gtk_tree_view_column_set_title(col, "EAD"); + gtk_tree_view_column_set_title(col, "O2%"); gtk_tree_view_column_set_sort_column_id(col, DIVE_NITROX); gtk_tree_view_column_pack_start(col, renderer, FALSE); gtk_tree_view_column_add_attribute(col, renderer, "text", DIVE_NITROXSTR); |