diff options
author | Sebastien Bacher <seb128@ubuntu.com> | 2010-02-04 14:09:19 -0800 |
---|---|---|
committer | Sebastien Bacher <seb128@ubuntu.com> | 2010-02-04 14:09:19 -0800 |
commit | c6637f3dbfffaead059486b86c1d3332fc600cbf (patch) | |
tree | 7d348358d0b4fa999a851af2352f49ce5f851098 /libdbusmenu-glib/server.h | |
parent | de91eab080847de6bea8d87d78589672c258eabe (diff) | |
parent | 6bed6531192b318cfcf4281662491521b95b68f6 (diff) | |
download | libdbusmenu-c6637f3dbfffaead059486b86c1d3332fc600cbf.tar.gz libdbusmenu-c6637f3dbfffaead059486b86c1d3332fc600cbf.tar.bz2 libdbusmenu-c6637f3dbfffaead059486b86c1d3332fc600cbf.zip |
releasing version 0.2.2-0ubuntu1
Diffstat (limited to 'libdbusmenu-glib/server.h')
-rw-r--r-- | libdbusmenu-glib/server.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libdbusmenu-glib/server.h b/libdbusmenu-glib/server.h index 566b3cf..f4e3527 100644 --- a/libdbusmenu-glib/server.h +++ b/libdbusmenu-glib/server.h @@ -45,7 +45,8 @@ G_BEGIN_DECLS #define DBUSMENU_SERVER_SIGNAL_ID_PROP_UPDATE "item-property-updated" #define DBUSMENU_SERVER_SIGNAL_ID_UPDATE "item-updated" -#define DBUSMENU_SERVER_SIGNAL_LAYOUT_UPDATE "layout-update" +#define DBUSMENU_SERVER_SIGNAL_LAYOUT_UPDATED "layout-updated" +#define DBUSMENU_SERVER_SIGNAL_LAYOUT_UPDATE DBUSMENU_SERVER_SIGNAL_LAYOUT_UPDATED #define DBUSMENU_SERVER_PROP_DBUS_OBJECT "dbus-object" #define DBUSMENU_SERVER_PROP_ROOT_NODE "root-node" @@ -56,7 +57,7 @@ G_BEGIN_DECLS @parent_class: #GObjectClass @id_prop_update: Slot for #DbusmenuServer::id-prop-update. @id_update: Slot for #DbusmenuServer::id-update. - @layout_update: Slot for #DbusmenuServer::layout-update. + @layout_updated: Slot for #DbusmenuServer::layout-update. @dbusmenu_server_reserved1: Reserved for future use. @dbusmenu_server_reserved2: Reserved for future use. @dbusmenu_server_reserved3: Reserved for future use. @@ -69,9 +70,9 @@ struct _DbusmenuServerClass { GObjectClass parent_class; /* Signals */ - void (*id_prop_update)(guint id, gchar * property, gchar * value); - void (*id_update)(guint id); - void (*layout_update)(gint revision); + void (*id_prop_update)(gint id, gchar * property, gchar * value); + void (*id_update)(gint id); + void (*layout_updated)(gint revision); /* Reserved */ void (*dbusmenu_server_reserved1)(void); |