diff options
author | Ted Gould <ted@gould.cx> | 2011-02-11 21:49:13 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-02-11 21:49:13 -0600 |
commit | 8e2df412c61b984a9a463c8dc45b42d190cf5e01 (patch) | |
tree | 69d05ad56c9b3e05ced36fff3cf110e841d172e4 | |
parent | 69e2d39c27c35386156929c44a419cb19b647316 (diff) | |
download | libdbusmenu-8e2df412c61b984a9a463c8dc45b42d190cf5e01.tar.gz libdbusmenu-8e2df412c61b984a9a463c8dc45b42d190cf5e01.tar.bz2 libdbusmenu-8e2df412c61b984a9a463c8dc45b42d190cf5e01.zip |
Setting value to something more obviously wrong
-rw-r--r-- | libdbusmenu-glib/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c index abfa5f0..d6e81c5 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -438,7 +438,7 @@ set_property (GObject * obj, guint id, const GValue * value, GParamSpec * pspec) GList * iter; for (iter = properties; iter != NULL; iter = g_list_next(iter)) { gchar * property = (gchar *)iter->data; - menuitem_property_changed(priv->root, property, g_variant_new_int32(0), DBUSMENU_SERVER(obj)); + menuitem_property_changed(priv->root, property, g_variant_new_string("deadvalue"), DBUSMENU_SERVER(obj)); } g_list_free(properties); |