Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use new gala dbus name #572

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Services/BackgroundManager.vala
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace Wingpanel.Services {
TRANSLUCENT_LIGHT
}

[DBus (name = "org.pantheon.gala.WingpanelInterface")]
[DBus (name = "io.elementary.gala.WingpanelInterface")]
public interface InterfaceBus : Object {
public signal void state_changed (BackgroundState state, uint animation_duration);

Expand All @@ -37,8 +37,8 @@ namespace Wingpanel.Services {
}

public class BackgroundManager : Object {
private const string DBUS_NAME = "org.pantheon.gala.WingpanelInterface";
private const string DBUS_PATH = "/org/pantheon/gala/WingpanelInterface";
private const string DBUS_NAME = "io.elementary.gala.WingpanelInterface";
private const string DBUS_PATH = "/io/elementary/gala/WingpanelInterface";

private static BackgroundManager? instance = null;

Expand Down
2 changes: 1 addition & 1 deletion wingpanel-interface/DBusServer.vala
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Boston, MA 02110-1301 USA.
*/

[DBus (name = "org.pantheon.gala.WingpanelInterface")]
[DBus (name = "io.pantheon.gala.WingpanelInterface")]
public class WingpanelInterface.DBusServer : Object {
private BackgroundManager background_manager;
private FocusManager focus_manager;
Expand Down
4 changes: 2 additions & 2 deletions wingpanel-interface/Main.vala
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
*/

public class WingpanelInterface.Main : Gala.Plugin {
private const string DBUS_NAME = "org.pantheon.gala.WingpanelInterface";
private const string DBUS_PATH = "/org/pantheon/gala/WingpanelInterface";
private const string DBUS_NAME = "io.elementary.gala.WingpanelInterface";
private const string DBUS_PATH = "/io/elementary/gala/WingpanelInterface";

public static Gala.WindowManager wm;
public static unowned Meta.Display display;
Expand Down