diff options
author | Stefan Fuchs <sfuchs@gmx.de> | 2017-12-11 21:40:06 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-13 05:48:20 -0800 |
commit | 82170579ad917c3ce328131dff24018123a34d6a (patch) | |
tree | 34b23ebfb1671ced7edf8f5d975a25be81f6c7aa /core/dive.h | |
parent | 7bc77947f6ab37d0d557cc237ab0ecceb2ecbe64 (diff) | |
download | subsurface-82170579ad917c3ce328131dff24018123a34d6a.tar.gz |
Enable removal of pictures from different dives at the same moment
Suggested-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Signed-off-by: Stefan Fuchs <sfuchs@gmx.de>
Diffstat (limited to 'core/dive.h')
-rw-r--r-- | core/dive.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dive.h b/core/dive.h index 7b2f3d658..880bcbfe4 100644 --- a/core/dive.h +++ b/core/dive.h @@ -421,7 +421,7 @@ extern struct picture *clone_picture(struct picture *src); extern bool dive_check_picture_time(struct dive *d, int shift_time, timestamp_t timestamp); extern void dive_create_picture(struct dive *d, const char *filename, int shift_time, bool match_all); extern void dive_add_picture(struct dive *d, struct picture *newpic); -extern void dive_remove_picture(char *filename); +extern bool dive_remove_picture(struct dive *d, char *filename); extern unsigned int dive_get_picture_count(struct dive *d); extern bool picture_check_valid(const char *filename, int shift_time); extern void picture_load_exif_data(struct picture *p); |