diff options
author | Ted Gould <ted@canonical.com> | 2009-11-12 16:32:20 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-11-12 16:32:20 -0600 |
commit | b063d5cd0ee330b8aa59ec9bdc8618cc547d751e (patch) | |
tree | 5e5937a1c9419d2e12f6c30dd6e32eb98c949278 | |
parent | a8f8217d034836341482127be57f12f71a1d4a38 (diff) | |
download | libdbusmenu-b063d5cd0ee330b8aa59ec9bdc8618cc547d751e.tar.gz libdbusmenu-b063d5cd0ee330b8aa59ec9bdc8618cc547d751e.tar.bz2 libdbusmenu-b063d5cd0ee330b8aa59ec9bdc8618cc547d751e.zip |
Switching all the values to Variants.
-rw-r--r-- | libdbusmenu-glib/dbus-menu.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libdbusmenu-glib/dbus-menu.xml b/libdbusmenu-glib/dbus-menu.xml index 21b4679..a198554 100644 --- a/libdbusmenu-glib/dbus-menu.xml +++ b/libdbusmenu-glib/dbus-menu.xml @@ -74,7 +74,7 @@ Each menu item has a set of properties. Property keys are in menuitem.h: <method name="GetProperty"> <arg type="u" name="id" direction="in" /> <arg type="s" name="property" direction="in" /> - <arg type="s" name="value" direction="out" /> + <arg type="v" name="value" direction="out" /> </method> <!-- @@ -82,7 +82,7 @@ Convenience method to retrieve all properties in one call (more efficient) --> <method name="GetProperties"> <arg type="u" name="id" direction="in" /> - <arg type="a{ss}" name="properties" direction="out" /> + <arg type="a{sv}" name="properties" direction="out" /> </method> <!-- @@ -101,7 +101,7 @@ as changed to value. <signal name="IdPropUpdate"> <arg type="u" name="id" direction="out" /> <arg type="s" name="prop" direction="out" /> - <arg type="s" name="value" direction="out" /> + <arg type="v" name="value" direction="out" /> </signal> <!-- |