diff options
author | Ted Gould <ted@gould.cx> | 2011-03-16 14:02:13 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-03-16 14:02:13 -0500 |
commit | 548bab4bd45f2d371fab88c89453de2f897f1b34 (patch) | |
tree | 2159a0b5651d06568460fb681a3885d0b4cbe523 /libdbusmenu-glib/menuitem.c | |
parent | c1af4ce858d65282a0d5da6e6cf4e51454170eed (diff) | |
parent | 3c9af9576901318917a4c20ab668742255bbe429 (diff) | |
download | libdbusmenu-548bab4bd45f2d371fab88c89453de2f897f1b34.tar.gz libdbusmenu-548bab4bd45f2d371fab88c89453de2f897f1b34.tar.bz2 libdbusmenu-548bab4bd45f2d371fab88c89453de2f897f1b34.zip |
New upstream release.
∘ Remove child items when they're removed by GTK
∘ Adding opened and closed events for menu visibility
∘ Handle empty image types
∘ Remove critical warning on parser menuitem check (LP: #733918)
∘ Fix dependencies in pkgconfig files (LP: #733263)
∘ Handle NULL labels (LP: #733688)
∘ Fix memory leaks from variants (LP: #722972)
Diffstat (limited to 'libdbusmenu-glib/menuitem.c')
-rw-r--r-- | libdbusmenu-glib/menuitem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libdbusmenu-glib/menuitem.c b/libdbusmenu-glib/menuitem.c index 2e5a345..70b5fd2 100644 --- a/libdbusmenu-glib/menuitem.c +++ b/libdbusmenu-glib/menuitem.c @@ -430,7 +430,7 @@ get_property (GObject * obj, guint id, GValue * value, GParamSpec * pspec) static void handle_event (DbusmenuMenuitem * mi, const gchar * name, GVariant * value, guint timestamp) { - if (g_strcmp0(name, "clicked") == 0) { + if (g_strcmp0(name, DBUSMENU_MENUITEM_EVENT_ACTIVATED) == 0) { g_signal_emit(G_OBJECT(mi), signals[ITEM_ACTIVATED], 0, timestamp, TRUE); } |