fulltext: rename fulltext_reload() to fulltext_populate()

This function was named improperly: it was only used on freshly
loaded data. Indeed, attempts to use it to actually reload lead
to crashes.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-04-08 09:05:28 +02:00 committed by Dirk Hohndel
parent d8b92a1852
commit d9599589c7
3 changed files with 6 additions and 6 deletions

View file

@ -24,7 +24,7 @@ struct dive;
void fulltext_register(struct dive *d); // Note: can be called repeatedly
void fulltext_unregister(struct dive *d); // Note: can be called repeatedly
void fulltext_unregister_all(); // Unregisters all dives in the dive table
void fulltext_reload(); // Registers all dives in the dive table
void fulltext_populate(); // Registers all dives in the dive table
#ifdef __cplusplus
}