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:
Ryan Lortie 2013-10-01 09:36:23 -04:00
parent 5abff7bd4c
commit 587012a2f9

View File

@ -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);