aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-10-01 13:44:12 -0500
committerTed Gould <ted@canonical.com>2009-10-01 13:44:12 -0500
commit653bc76b2e5dd01d9ee92d45cb6d98798ba5b1ce (patch)
tree90ac9c4f29d884efa442d08f5f2f4ba2157bf491
parentddef5c283ba3ea32701e59d4e2ce0fe4d2b93c34 (diff)
parentb460b4f1596852355cfbf8828160f8e221547c3a (diff)
downloadlibdbusmenu-653bc76b2e5dd01d9ee92d45cb6d98798ba5b1ce.tar.gz
libdbusmenu-653bc76b2e5dd01d9ee92d45cb6d98798ba5b1ce.tar.bz2
libdbusmenu-653bc76b2e5dd01d9ee92d45cb6d98798ba5b1ce.zip
More messages from client
-rw-r--r--debian/changelog6
-rw-r--r--libdbusmenu-glib/client.c8
2 files changed, 14 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index 2312384..d1e4d16 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+libdbusmenu (0.1.5-0ubuntu1~ppa2~bugfix5) UNRELEASED; urgency=low
+
+ * More messages from client
+
+ -- Ted Gould <ted@ubuntu.com> Thu, 01 Oct 2009 13:43:57 -0500
+
libdbusmenu (0.1.5-0ubuntu1~ppa2~bugfix4) karmic; urgency=low
* More debugging info
diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c
index 2c5e571..1a018a8 100644
--- a/libdbusmenu-glib/client.c
+++ b/libdbusmenu-glib/client.c
@@ -880,6 +880,10 @@ dbusmenu_client_get_root (DbusmenuClient * client)
return NULL;
}
+ #ifdef MASSIVEDEBUGGING
+ g_debug("Client get root: %X", (guint)priv->root);
+ #endif
+
return priv->root;
}
@@ -912,6 +916,10 @@ dbusmenu_client_add_type_handler (DbusmenuClient * client, const gchar * type, D
DbusmenuClientPrivate * priv = DBUSMENU_CLIENT_GET_PRIVATE(client);
+ #ifdef MASSIVEDEBUGGING
+ g_debug("Adding a type handler for '%s'", type);
+ #endif
+
if (priv->type_handlers == NULL) {
g_warning("Type handlers hashtable not built");
return FALSE;