remove_action_entries
Description:
Remove actions from a [iface@Gio.
ActionMap]. This is meant as the reverse of [method@Gio.ActionMap.add_action_entries].
```c static const GActionEntry entries[] = { { "quit", activate_quit }, { "print-string", activate_print_string, "s" } };
void add_actions (GActionMap *map) { g_action_map_add_action_entries (map, entries, G_N_ELEMENTS (entries), NULL); }
void remove_actions (GActionMap *map) { g_action_map_remove_action_entries (map, entries, G_N_ELEMENTS (entries)); } ```
Parameters:
| this |
The [iface@Gio.ActionMap] |
| entries |
a pointer to the first item in an array of [struct@Gio.ActionEntry] structs |
| n_entries |
the length of |