diff options
-rw-r--r-- | src/desktop.vala | 4 | ||||
-rw-r--r-- | src/phone.vala | 2 |
2 files changed, 3 insertions, 3 deletions
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 ()); |