diff options
author | Ted Gould <ted@gould.cx> | 2009-12-10 12:53:54 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-10 12:53:54 -0600 |
commit | af702a42770fcbd3140bd626941c6bbb5a714213 (patch) | |
tree | 6c76a0010b228dd66f5aee868acbc58b7742fc1e /libdbusmenu-glib/server.c | |
parent | aaa4ebbb1825dc423b08dd6801712bc92556de86 (diff) | |
parent | 3b94f54d8e4ae546c922e6561234ed2070d9c169 (diff) | |
download | libdbusmenu-af702a42770fcbd3140bd626941c6bbb5a714213.tar.gz libdbusmenu-af702a42770fcbd3140bd626941c6bbb5a714213.tar.bz2 libdbusmenu-af702a42770fcbd3140bd626941c6bbb5a714213.zip |
* Upstream release 0.1.8
* Changing the name to org.ayatana
* Underline fixes
* Documenation of the DBus API
Diffstat (limited to 'libdbusmenu-glib/server.c')
-rw-r--r-- | libdbusmenu-glib/server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c index 1ac1da6..84bfffe 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -161,7 +161,7 @@ dbusmenu_server_class_init (DbusmenuServerClass *class) g_object_class_install_property (object_class, PROP_DBUS_OBJECT, g_param_spec_string(DBUSMENU_SERVER_PROP_DBUS_OBJECT, "DBus object path", "The object that represents this set of menus on DBus", - "/org/freedesktop/dbusmenu", + "/org/ayatana/dbusmenu", G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS)); g_object_class_install_property (object_class, PROP_ROOT_NODE, g_param_spec_object(DBUSMENU_SERVER_PROP_ROOT_NODE, "Root menu node", @@ -472,7 +472,7 @@ _dbusmenu_server_call (DbusmenuServer * server, guint id, GError ** error) Creates a new #DbusmenuServer object with a specific object path on DBus. If @object is set to NULL the default object - name of "/org/freedesktop/dbusmenu" will be used. + name of "/org/ayatana/dbusmenu" will be used. Return value: A brand new #DbusmenuServer */ @@ -480,7 +480,7 @@ DbusmenuServer * dbusmenu_server_new (const gchar * object) { if (object == NULL) { - object = "/org/freedesktop/dbusmenu"; + object = "/org/ayatana/dbusmenu"; } DbusmenuServer * self = g_object_new(DBUSMENU_TYPE_SERVER, |