diff options
author | Ted Gould <ted@gould.cx> | 2010-06-04 12:17:21 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-06-04 12:17:21 -0500 |
commit | 09bdc1f04df9629cd7e9b3872c140f773edead87 (patch) | |
tree | 924f0b757ad5ed76dab6aa7d95f285e243a467c9 | |
parent | 0ad17a63cfbe3d19bd87db4901e3fdaafbd7def8 (diff) | |
download | libdbusmenu-09bdc1f04df9629cd7e9b3872c140f773edead87.tar.gz libdbusmenu-09bdc1f04df9629cd7e9b3872c140f773edead87.tar.bz2 libdbusmenu-09bdc1f04df9629cd7e9b3872c140f773edead87.zip |
Fixing annotations, no everything is happy.
-rw-r--r-- | libdbusmenu-glib/menuitem.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libdbusmenu-glib/menuitem.h b/libdbusmenu-glib/menuitem.h index 2a7687b..b04bba8 100644 --- a/libdbusmenu-glib/menuitem.h +++ b/libdbusmenu-glib/menuitem.h @@ -96,12 +96,13 @@ typedef void (*dbusmenu_menuitem_about_to_show_cb) (DbusmenuMenuitem * mi, gpoin /** * dbusmenu_menuitem_buildxml_slot_t: - * @stringarray: (inout) (array) (transfer none) (element utf8): An array of strings that can be combined into an XML file. + * @mi: (in): Menu item that should be built from + * @stringarray: (inout) (transfer none) (array) (element-type utf8): An array of strings that can be combined into an XML file. * * This is the function that is called to represent this menu item * as an XML fragment. Should call it's own children. */ -typedef void (*dbusmenu_menuitem_buildxml_slot_t) (GPtrArray * stringarray); +typedef void (*dbusmenu_menuitem_buildxml_slot_t) (DbusmenuMenuitem * mi, GPtrArray* stringarray); /** * DbusmenuMenuitemClass: |