diff options
author | Ted Gould <ted@gould.cx> | 2010-10-27 17:48:48 -0400 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-10-27 17:48:48 -0400 |
commit | 3a572218ff8520ca284966d9395c2fd06544d233 (patch) | |
tree | baff242164c6e064217c0f864a22211653980b74 | |
parent | 78a962eab572397bf0833cfb077942d7efac6643 (diff) | |
download | libdbusmenu-3a572218ff8520ca284966d9395c2fd06544d233.tar.gz libdbusmenu-3a572218ff8520ca284966d9395c2fd06544d233.tar.bz2 libdbusmenu-3a572218ff8520ca284966d9395c2fd06544d233.zip |
Changing recurse to an int for the number of levels
-rw-r--r-- | libdbusmenu-glib/dbus-menu.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libdbusmenu-glib/dbus-menu.xml b/libdbusmenu-glib/dbus-menu.xml index bd3ea0b..82de533 100644 --- a/libdbusmenu-glib/dbus-menu.xml +++ b/libdbusmenu-glib/dbus-menu.xml @@ -182,16 +182,16 @@ License version 3 and version 2.1 along with this program. If not, see The format is recursive, where the second 'v' is in the same format as the original 'a(ia(sv)a(v))'. If the @recursive flag is set to - false than the second array will have zero entries. + less than one then the second array will have zero entries. </dox:d> <arg type="i" name="parentId" direction="in"> <dox:d>The ID of the parent node for the layout. For grabbing the layout from the root node use zero.</dox:d> </arg> - <arg type="b" name="recurse" direction="in"> + <arg type="i" name="recurse" direction="in"> <dox:d> - Recurse to all children of the parent and include them in the - structure that is returned. + The amount of levels of recursion to use. -1, as value would + deliver all the items under the @parentId. </dox:d> </arg> <arg type="as" name="propertyNames" direction="in" > |