mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
[Divesite] Load / Save divesite country on git
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
32e6ca4919
commit
f9a36132ad
2 changed files with 5 additions and 1 deletions
|
@ -293,6 +293,9 @@ static void parse_dive_notrip(char *line, struct membuffer *str, void *_dive)
|
|||
struct dive *dive = _dive; dive->tripflag = NO_TRIP;
|
||||
}
|
||||
|
||||
static void parse_site_country(char *line, struct membuffer *str, void *_ds)
|
||||
{ (void) line; struct dive_site *ds = _ds; ds->country = strdup(mb_cstring(str)); }
|
||||
|
||||
static void parse_site_description(char *line, struct membuffer *str, void *_ds)
|
||||
{ (void) line; struct dive_site *ds = _ds; ds->description = strdup(mb_cstring(str)); }
|
||||
|
||||
|
@ -994,7 +997,7 @@ static void dive_parser(char *line, struct membuffer *str, void *_dive)
|
|||
struct keyword_action site_action[] = {
|
||||
#undef D
|
||||
#define D(x) { #x, parse_site_ ## x }
|
||||
D(description), D(geo), D(gps), D(name), D(notes)
|
||||
D(country), D(description), D(geo), D(gps), D(name), D(notes)
|
||||
};
|
||||
|
||||
static void site_parser(char *line, struct membuffer *str, void *_ds)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue