diff options
Diffstat (limited to 'src/menubar.vala')
-rw-r--r-- | src/menubar.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/menubar.vala b/src/menubar.vala index 79783da..799cb18 100644 --- a/src/menubar.vala +++ b/src/menubar.vala @@ -153,7 +153,7 @@ public class MenuBar : Gtk.MenuBar setup_indicators (); - UnityGreeter.singleton.starting_session.connect (cleanup); + ArcticaGreeter.singleton.starting_session.connect (cleanup); } private void close_pid (ref Pid pid) @@ -325,7 +325,7 @@ public class MenuBar : Gtk.MenuBar try { var conn = Bus.get_sync (BusType.SESSION); - greeter_set_env ("UNITY_GREETER_DBUS_NAME", conn.get_unique_name ()); + greeter_set_env ("ARCTICA_GREETER_DBUS_NAME", conn.get_unique_name ()); } catch (IOError e) { @@ -474,7 +474,7 @@ public class MenuBar : Gtk.MenuBar // this is not racy with orca startup, it is racy with whether // orca will read the first character or not out loud. Hence // why we do both. Ideally this would be fixed in orca itself. - UnityGreeter.singleton.orca_needs_kick = true; + ArcticaGreeter.singleton.orca_needs_kick = true; Timeout.add_seconds (1, () => { Signal.emit_by_name ((get_toplevel () as Gtk.Window).get_focus ().get_accessible (), "focus-event", true); return false; |