summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonsta <[email protected]>2015-10-14 14:08:16 +0300
committermonsta <[email protected]>2015-10-14 14:08:16 +0300
commite0ba283e92aab71119a8398be1c2dc2f59a5998c (patch)
treed24dbfb8f4b003debf1fb402759a174a8deac726
parent7fdc028ff621fceaf76f20504ccc38eb22f43fac (diff)
downloadmate-power-manager-e0ba283e92aab71119a8398be1c2dc2f59a5998c.tar.bz2
mate-power-manager-e0ba283e92aab71119a8398be1c2dc2f59a5998c.tar.xz
corrected comments to mention org.gnome.SessionManager
-rw-r--r--src/gpm-session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gpm-session.c b/src/gpm-session.c
index d0c5d1a..3baa818 100644
--- a/src/gpm-session.c
+++ b/src/gpm-session.c
@@ -342,7 +342,7 @@ gpm_session_register_client (GpmSession *session, const gchar *app_id, const gch
goto out;
}
- /* get org.mate.Session.ClientPrivate interface */
+ /* get org.gnome.SessionManager.ClientPrivate interface */
connection = dbus_g_bus_get (DBUS_BUS_SESSION, NULL);
session->priv->proxy_client_private = dbus_g_proxy_new_for_name_owner (connection, GPM_SESSION_MANAGER_SERVICE,
client_id, GPM_SESSION_MANAGER_CLIENT_PRIVATE_INTERFACE, &error);
@@ -462,7 +462,7 @@ gpm_session_init (GpmSession *session)
connection = dbus_g_bus_get (DBUS_BUS_SESSION, NULL);
- /* get org.mate.Session interface */
+ /* get org.gnome.SessionManager interface */
session->priv->proxy = dbus_g_proxy_new_for_name_owner (connection, GPM_SESSION_MANAGER_SERVICE,
GPM_SESSION_MANAGER_PATH,
GPM_SESSION_MANAGER_INTERFACE, &error);
@@ -472,7 +472,7 @@ gpm_session_init (GpmSession *session)
return;
}
- /* get org.mate.Session.Presence interface */
+ /* get org.gnome.SessionManager.Presence interface */
session->priv->proxy_presence = dbus_g_proxy_new_for_name_owner (connection, GPM_SESSION_MANAGER_SERVICE,
GPM_SESSION_MANAGER_PRESENCE_PATH,
GPM_SESSION_MANAGER_PRESENCE_INTERFACE, &error);