[gtk+] action-namespace example: use non-deprecated function



commit 587012a2f943d8a91cac53634a62f051305d7502
Author: Ryan Lortie <desrt desrt ca>
Date:   Tue Oct 1 09:36:23 2013 -0400

    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.

 examples/action-namespace.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/examples/action-namespace.c b/examples/action-namespace.c
index 147633a..16d48cb 100644
--- a/examples/action-namespace.c
+++ b/examples/action-namespace.c
@@ -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);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]