mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Dive site: inform model of dive site addition / deletion
Introduce two DiveListNotifier signals which are sent by the undo commands if dives are added to / removed from the core. The signal has the dive site and the index in the global dive site table as payload. Thus, the model has only to remove the appropriate rows. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
84f7179367
commit
59e602447b
9 changed files with 43 additions and 16 deletions
|
|
@ -83,11 +83,12 @@
|
|||
}
|
||||
|
||||
#define MAKE_REMOVE(table_type, item_type, item_name) \
|
||||
void remove_##item_name(const item_type item, struct table_type *table) \
|
||||
int remove_##item_name(const item_type item, struct table_type *table) \
|
||||
{ \
|
||||
int idx = get_idx_in_##table_type(table, item); \
|
||||
if (idx >= 0) \
|
||||
remove_from_##table_type(table, idx); \
|
||||
return idx; \
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue