diff options
author | Ted Gould <ted@gould.cx> | 2010-02-08 12:26:21 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-02-08 12:26:21 -0600 |
commit | 78e906f06f2aaf6ca24f8ee5a0363367921f50dc (patch) | |
tree | dcc52c699ea752b0deac67035782f18ddb64c26d /libdbusmenu-glib/client.c | |
parent | e8ac2fcb6cd946e90e873970976f6ae64354947c (diff) | |
parent | 030d6a4f5a48fcac6333cc4159fc343141339a15 (diff) | |
download | libdbusmenu-78e906f06f2aaf6ca24f8ee5a0363367921f50dc.tar.gz libdbusmenu-78e906f06f2aaf6ca24f8ee5a0363367921f50dc.tar.bz2 libdbusmenu-78e906f06f2aaf6ca24f8ee5a0363367921f50dc.zip |
* Upstream Merge
* Making sure to unref the old item in all cases.
Diffstat (limited to 'libdbusmenu-glib/client.c')
-rw-r--r-- | libdbusmenu-glib/client.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 2302110..1c1574c 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -778,14 +778,14 @@ parse_layout (DbusmenuClient * client, const gchar * layout) g_object_ref(priv->root); dbusmenu_menuitem_set_root(priv->root, TRUE); - if (oldroot != NULL) { - dbusmenu_menuitem_set_root(oldroot, FALSE); - g_object_unref(oldroot); - } - g_signal_emit(G_OBJECT(client), signals[ROOT_CHANGED], 0, priv->root, TRUE); } + if (oldroot != NULL) { + dbusmenu_menuitem_set_root(oldroot, FALSE); + g_object_unref(oldroot); + } + return 1; } |