mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: make event name an std::string
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
408b31b6ce
commit
b8c7b173c6
20 changed files with 149 additions and 152 deletions
|
@ -86,7 +86,7 @@ int get_cylinderid_at_time(struct dive *dive, struct divecomputer *dc, duration_
|
|||
int cylinder_idx = 0;
|
||||
struct event *event = dc->events;
|
||||
while (event && event->time.seconds <= time.seconds) {
|
||||
if (!strcmp(event->name, "gaschange"))
|
||||
if (event->name == "gaschange")
|
||||
cylinder_idx = get_cylinder_index(dive, event);
|
||||
event = event->next;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue