mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-11 13:10:07 +00:00
action-namespace example: use non-deprecated function
g_simple_action_group_add_entries() is deprecated since we added the GActionMap interface, so use its equivalent function instead.
This commit is contained in:
parent
5abff7bd4c
commit
587012a2f9
@ -83,8 +83,7 @@ activate (GApplication *app,
|
||||
win = gtk_application_window_new (GTK_APPLICATION (app));
|
||||
|
||||
doc_actions = g_simple_action_group_new ();
|
||||
g_simple_action_group_add_entries (doc_actions, doc_entries,
|
||||
G_N_ELEMENTS (doc_entries), win);
|
||||
g_action_map_add_action_entries (G_ACTION_MAP (doc_actions), doc_entries, G_N_ELEMENTS (doc_entries), win);
|
||||
|
||||
g_action_map_add_action_entries (G_ACTION_MAP (win), win_entries,
|
||||
G_N_ELEMENTS (win_entries), win);
|
||||
|
Loading…
Reference in New Issue
Block a user