diff options
author | Clement Lefebvre <[email protected]> | 2015-09-04 21:49:05 +0100 |
---|---|---|
committer | Clement Lefebvre <[email protected]> | 2015-09-04 21:49:05 +0100 |
commit | 8775ad4d201ce725594b96091ab300de0c5cb544 (patch) | |
tree | 96df8a8dacf8f9d79773f17d795b5533cf634b8a | |
parent | efd226f094d55b85f335b35e863cb487f0ae3292 (diff) | |
download | mate-power-manager-8775ad4d201ce725594b96091ab300de0c5cb544.tar.bz2 mate-power-manager-8775ad4d201ce725594b96091ab300de0c5cb544.tar.xz |
Switch to org.gnome.SessionManager
-rw-r--r-- | applets/inhibit/inhibit-applet.c | 6 | ||||
-rw-r--r-- | src/gpm-session.c | 12 |
2 files changed, 9 insertions, 9 deletions
diff --git a/applets/inhibit/inhibit-applet.c b/applets/inhibit/inhibit-applet.c index 58f2c88..28b22aa 100644 --- a/applets/inhibit/inhibit-applet.c +++ b/applets/inhibit/inhibit-applet.c @@ -71,9 +71,9 @@ typedef struct{ GType gpm_inhibit_applet_get_type (void); -#define GS_DBUS_SERVICE "org.mate.SessionManager" -#define GS_DBUS_PATH "/org/mate/SessionManager" -#define GS_DBUS_INTERFACE "org.mate.SessionManager" +#define GS_DBUS_SERVICE "org.gnome.SessionManager" +#define GS_DBUS_PATH "/org/gnome/SessionManager" +#define GS_DBUS_INTERFACE "org.gnome.SessionManager" static void gpm_inhibit_applet_class_init (GpmInhibitAppletClass *klass); static void gpm_inhibit_applet_init (GpmInhibitApplet *applet); diff --git a/src/gpm-session.c b/src/gpm-session.c index ffe3f61..d0c5d1a 100644 --- a/src/gpm-session.c +++ b/src/gpm-session.c @@ -35,12 +35,12 @@ static void gpm_session_finalize (GObject *object); #define GPM_SESSION_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GPM_TYPE_SESSION, GpmSessionPrivate)) -#define GPM_SESSION_MANAGER_SERVICE "org.mate.SessionManager" -#define GPM_SESSION_MANAGER_PATH "/org/mate/SessionManager" -#define GPM_SESSION_MANAGER_INTERFACE "org.mate.SessionManager" -#define GPM_SESSION_MANAGER_PRESENCE_PATH "/org/mate/SessionManager/Presence" -#define GPM_SESSION_MANAGER_PRESENCE_INTERFACE "org.mate.SessionManager.Presence" -#define GPM_SESSION_MANAGER_CLIENT_PRIVATE_INTERFACE "org.mate.SessionManager.ClientPrivate" +#define GPM_SESSION_MANAGER_SERVICE "org.gnome.SessionManager" +#define GPM_SESSION_MANAGER_PATH "/org/gnome/SessionManager" +#define GPM_SESSION_MANAGER_INTERFACE "org.gnome.SessionManager" +#define GPM_SESSION_MANAGER_PRESENCE_PATH "/org/gnome/SessionManager/Presence" +#define GPM_SESSION_MANAGER_PRESENCE_INTERFACE "org.gnome.SessionManager.Presence" +#define GPM_SESSION_MANAGER_CLIENT_PRIVATE_INTERFACE "org.gnome.SessionManager.ClientPrivate" #define GPM_DBUS_PROPERTIES_INTERFACE "org.freedesktop.DBus.Properties" typedef enum { |