From c3ab1d640083ef7e40dbd7c3f6fa42245a53b9c7 Mon Sep 17 00:00:00 2001 From: Ken VanDine Date: Thu, 11 Feb 2010 14:53:22 -0500 Subject: include all the license files in EXTRA_DIST --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 747b90b..c99525b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,3 @@ - +EXTRA_DIST = COPYING.2.1 COPYING-GPL3 SUBDIRS = libdbusmenu-glib libdbusmenu-gtk tools tests po -- cgit v1.2.3 From 59ae9951b9a531a7dd6f82644b7f64d8cf4bba06 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Fri, 12 Feb 2010 14:54:50 -0600 Subject: Setting the ID on the default root item to 0 --- libdbusmenu-glib/server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdbusmenu-glib/server.c b/libdbusmenu-glib/server.c index 44ee911..55d339f 100644 --- a/libdbusmenu-glib/server.c +++ b/libdbusmenu-glib/server.c @@ -378,7 +378,7 @@ _dbusmenu_server_get_layout (DbusmenuServer * server, gint parent, guint * revis if (parent == 0) { if (priv->root == NULL) { /* g_debug("Getting layout without root node!"); */ - g_ptr_array_add(xmlarray, g_strdup("")); + g_ptr_array_add(xmlarray, g_strdup("")); } else { dbusmenu_menuitem_buildxml(priv->root, xmlarray); } -- cgit v1.2.3