diff options
author | Jeremie Guichard <djebrest@gmail.com> | 2018-04-09 10:09:34 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-09 07:59:51 -0700 |
commit | 7753352e6210ae69c2a79bdf2387eaca46becc64 (patch) | |
tree | 88c2594af6ff7c87b7923c7b3625653f3b5d7cfe /core/qthelper.h | |
parent | f1830cd44e75ac552e09dfd79f6ec9e0d90f8808 (diff) | |
download | subsurface-7753352e6210ae69c2a79bdf2387eaca46becc64.tar.gz |
Change taglist_get_tagstring to support 'unlimited' tag list size
Previous taglist_get_tagstring signature/implementation did not allow
handling of cases where inputted buffer could not contain all tags.
New implementation allocates buffer based on pre-computed size allowing to
insert all tags in the returned string.
Added get_taglist_string in qthelper to handle conversion to QString
Added TestTagList with tests for taglist_get_tagstring
Signed-off-by: Jeremie Guichard <djebrest@gmail.com>
Diffstat (limited to 'core/qthelper.h')
-rw-r--r-- | core/qthelper.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/qthelper.h b/core/qthelper.h index 978493e1c..c699c5653 100644 --- a/core/qthelper.h +++ b/core/qthelper.h @@ -30,6 +30,7 @@ bool gpsHasChanged(struct dive *dive, struct dive *master, const QString &gps_te QList<int> getDivesInTrip(dive_trip_t *trip); QString get_gas_string(struct gasmix gas); QString get_divepoint_gas_string(struct dive *d, const divedatapoint& dp); +QString get_taglist_string(struct tag_entry *tag_list); void read_hashes(); void write_hashes(); void updateHash(struct picture *picture); |