aboutsummaryrefslogtreecommitdiff
path: root/src/im-menu-item.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-09-08 20:19:14 -0500
committerTed Gould <ted@canonical.com>2009-09-08 20:19:14 -0500
commite12e4c0dfe57040e2483fa1315aa24bf865c5fe7 (patch)
treeb922fd24542176ba11a45c4d5e30dd5e9e68053a /src/im-menu-item.c
parent77865dfed89bf1fa9e9b3cd3c88544bdf9c0d07c (diff)
parentc16260bbe714ef79c48e40a27b84eaf92b8253d6 (diff)
downloadayatana-indicator-messages-e12e4c0dfe57040e2483fa1315aa24bf865c5fe7.tar.gz
ayatana-indicator-messages-e12e4c0dfe57040e2483fa1315aa24bf865c5fe7.tar.bz2
ayatana-indicator-messages-e12e4c0dfe57040e2483fa1315aa24bf865c5fe7.zip
Changing items support
Diffstat (limited to 'src/im-menu-item.c')
-rw-r--r--src/im-menu-item.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/im-menu-item.c b/src/im-menu-item.c
index 03cea5e..f97436e 100644
--- a/src/im-menu-item.c
+++ b/src/im-menu-item.c
@@ -265,7 +265,7 @@ time_cb (IndicateListener * listener, IndicateListenerServer * server, IndicateL
static void
sender_cb (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * property, gchar * propertydata, gpointer data)
{
- g_debug("Got Sender Information");
+ g_debug("Got Sender Information: %s", propertydata);
ImMenuItem * self = IM_MENU_ITEM(data);
/* Our data should be right */
@@ -278,7 +278,7 @@ sender_cb (IndicateListener * listener, IndicateListenerServer * server, Indicat
/* We might get the sender variable returning a
null string as it doesn't exist on newer clients
but we don't want to listen to that. */
- if (!g_strcmp0(property, "sender") && property[0] == '\0') {
+ if (!g_strcmp0(property, "sender") && propertydata[0] == '\0') {
return;
}