aboutsummaryrefslogtreecommitdiff
path: root/src/messages-service.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-19 22:54:33 -0500
committerTed Gould <ted@canonical.com>2009-08-19 22:54:33 -0500
commitc49644e5e7a901c2113d6d0a88e54b4224f90de5 (patch)
treef722ce44d582db6b9f6fd6d9288e2415332cb350 /src/messages-service.c
parentdb8ada09e2f254026f318b38cd45ae1cd765f584 (diff)
downloadayatana-indicator-messages-c49644e5e7a901c2113d6d0a88e54b4224f90de5.tar.gz
ayatana-indicator-messages-c49644e5e7a901c2113d6d0a88e54b4224f90de5.tar.bz2
ayatana-indicator-messages-c49644e5e7a901c2113d6d0a88e54b4224f90de5.zip
Oh, some debug messages to see what's going on.
Diffstat (limited to 'src/messages-service.c')
-rw-r--r--src/messages-service.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/messages-service.c b/src/messages-service.c
index 395bf32..2020dd3 100644
--- a/src/messages-service.c
+++ b/src/messages-service.c
@@ -527,13 +527,16 @@ indicator_removed (IndicateListener * listener, IndicateListenerServer * server,
static void
check_eclipses (AppMenuItem * ai)
{
+ g_debug("Checking eclipsing");
const gchar * aidesktop = app_menu_item_get_desktop(ai);
if (aidesktop == NULL) return;
+ g_debug("\tApp desktop: %s", aidesktop);
GList * llitem;
for (llitem = launcherList; llitem != NULL; llitem = llitem->next) {
launcherList_t * ll = (launcherList_t *)llitem->data;
const gchar * lidesktop = launcher_menu_item_get_desktop(ll->menuitem);
+ g_debug("\tLauncher desktop: %s", lidesktop);
if (!g_strcmp0(aidesktop, lidesktop)) {
launcher_menu_item_set_eclipsed(ll->menuitem, TRUE);