From 076c482fb033472145454deedfc21e97dc7412d7 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Thu, 22 Aug 2013 11:25:21 -0500 Subject: Don't use deprecated GSimpleActionGroup APIs. --- src/desktop.vala | 4 ++-- src/phone.vala | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/desktop.vala b/src/desktop.vala index 4a10db8..17d7cb6 100644 --- a/src/desktop.vala +++ b/src/desktop.vala @@ -59,7 +59,7 @@ class Desktop: Profile actions += create_send_file_action (); actions += create_show_settings_action (); foreach (var a in actions) - action_group.insert (a); + action_group.add_action (a); build_menu (); @@ -112,7 +112,7 @@ class Desktop: Profile => bluetooth.set_device_connected (id, a.get_state().get_boolean())); connect_actions.insert (device.id, a); - action_group.insert (a); + action_group.add_action (a); } else { diff --git a/src/phone.vala b/src/phone.vala index 43ca554..e90cd66 100644 --- a/src/phone.vala +++ b/src/phone.vala @@ -35,7 +35,7 @@ class Phone: Profile actions += create_enabled_action (bluetooth); actions += create_settings_action (); foreach (var a in actions) - action_group.insert (a); + action_group.add_action (a); var section = new Menu (); section.append_item (create_enabled_menuitem ()); -- cgit v1.2.3