diff options
author | Ted Gould <ted@canonical.com> | 2009-05-12 17:25:31 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-05-12 17:25:31 -0500 |
commit | 81f7009789863c2666c11474ec6ea0d6d875972d (patch) | |
tree | 5e9a05e73dc9bf5772f913e87b1a47e8ce7344c0 /libdbusmenu-glib | |
parent | b23056f055b443925544089bd4b822b152fcf039 (diff) | |
download | libdbusmenu-81f7009789863c2666c11474ec6ea0d6d875972d.tar.gz libdbusmenu-81f7009789863c2666c11474ec6ea0d6d875972d.tar.bz2 libdbusmenu-81f7009789863c2666c11474ec6ea0d6d875972d.zip |
Passing on the signal from the menuitem up the stack and out the DBus.
Diffstat (limited to 'libdbusmenu-glib')
-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 62d0505..847a186 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -293,7 +293,7 @@ get_property (GObject * obj, guint id, GValue * value, GParamSpec * pspec) static void menuitem_property_changed (DbusmenuMenuitem * mi, gchar * property, gchar * value, DbusmenuServer * server) { - + g_signal_emit(G_OBJECT(server), signals[ID_PROP_UPDATE], 0, dbusmenu_menuitem_get_id(mi), property, value, TRUE); return; } |