mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
cleanup: remove dive_get_picture_count() function
The last user was removed in 5b7e4c57f7
.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
4489389a01
commit
aa8cadbcdd
2 changed files with 0 additions and 9 deletions
|
@ -3538,14 +3538,6 @@ void dive_add_picture(struct dive *dive, struct picture *newpic)
|
|||
return;
|
||||
}
|
||||
|
||||
unsigned int dive_get_picture_count(struct dive *dive)
|
||||
{
|
||||
unsigned int i = 0;
|
||||
FOR_EACH_PICTURE (dive)
|
||||
i++;
|
||||
return i;
|
||||
}
|
||||
|
||||
void picture_free(struct picture *picture)
|
||||
{
|
||||
if (!picture)
|
||||
|
|
|
@ -227,7 +227,6 @@ extern void free_picture(struct picture *picture);
|
|||
extern void create_picture(const char *filename, int shift_time, bool match_all);
|
||||
extern void dive_add_picture(struct dive *d, struct picture *newpic);
|
||||
extern bool dive_remove_picture(struct dive *d, const char *filename);
|
||||
extern unsigned int dive_get_picture_count(struct dive *d);
|
||||
extern bool picture_check_valid_time(timestamp_t timestamp, int shift_time);
|
||||
extern void picture_free(struct picture *picture);
|
||||
|
||||
|
|
Loading…
Reference in a new issue