diff options
author | Ted Gould <ted@canonical.com> | 2009-05-12 11:49:55 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-05-12 11:49:55 -0500 |
commit | a12a7aeb24ca9d310463fba824a47041b4677c25 (patch) | |
tree | 0d9618575c5fcedb5b109c5a90eca40bf2f23133 | |
parent | 4ce51aa8712d1543eb0a28a6f41ee4750977918a (diff) | |
download | libdbusmenu-a12a7aeb24ca9d310463fba824a47041b4677c25.tar.gz libdbusmenu-a12a7aeb24ca9d310463fba824a47041b4677c25.tar.bz2 libdbusmenu-a12a7aeb24ca9d310463fba824a47041b4677c25.zip |
Adding proporties to the private object.
-rw-r--r-- | libdbusmenu-glib/menuitem.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdbusmenu-glib/menuitem.c b/libdbusmenu-glib/menuitem.c index 6360079..f228059 100644 --- a/libdbusmenu-glib/menuitem.c +++ b/libdbusmenu-glib/menuitem.c @@ -37,6 +37,7 @@ License version 3 and version 2.1 along with this program. If not, see @id: The ID of this menu item @children: A list of #DbusmenuMenuitem objects that are children to this one. + @properties: All of the properties on this menu item. These are the little secrets that we don't want getting out of data that we have. They can still be gotten using @@ -47,6 +48,7 @@ struct _DbusmenuMenuitemPrivate { guint id; GList * children; + GHashTable * properties; }; /* Properties */ |