cleanup: remove unused function get_divepoint_gas_string()

The last user was removed way back in commit
9fbd11744f.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-04-27 15:52:49 +02:00 committed by Lubomir I. Ivanov
parent 006d630142
commit 5ba7c68433
2 changed files with 0 additions and 7 deletions

View file

@ -1192,12 +1192,6 @@ QString get_gas_string(struct gasmix gas)
return result;
}
QString get_divepoint_gas_string(struct dive *d, const divedatapoint &p)
{
int idx = p.cylinderid;
return get_gas_string(get_cylinder(d, idx)->gasmix);
}
QString get_taglist_string(struct tag_entry *tag_list)
{
char *buffer = taglist_get_tagstring(tag_list);