aboutsummaryrefslogtreecommitdiff
path: root/src/indicator-messages.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-04-03 15:26:36 -0500
committerTed Gould <ted@canonical.com>2009-04-03 15:26:36 -0500
commit06c50baeaf0736a2cc929cbc3d1dbe05a5871ec3 (patch)
tree91c7fa06b141a05767808c58d589da2837e7c2e5 /src/indicator-messages.c
parentc51645bc6c052945571ae33fcbeb05107871613e (diff)
parent1a4df93becd5b029bb10d8d6caa2bd59499e4209 (diff)
downloadayatana-indicator-messages-06c50baeaf0736a2cc929cbc3d1dbe05a5871ec3.tar.gz
ayatana-indicator-messages-06c50baeaf0736a2cc929cbc3d1dbe05a5871ec3.tar.bz2
ayatana-indicator-messages-06c50baeaf0736a2cc929cbc3d1dbe05a5871ec3.zip
Merging from upstream
Diffstat (limited to 'src/indicator-messages.c')
-rw-r--r--src/indicator-messages.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/indicator-messages.c b/src/indicator-messages.c
index e8fed5b..83520ff 100644
--- a/src/indicator-messages.c
+++ b/src/indicator-messages.c
@@ -55,8 +55,8 @@ serverList_equal (gconstpointer a, gconstpointer b)
pa = (serverList_t *)a;
pb = (serverList_t *)b;
- gchar * pas = INDICATE_LISTENER_SERVER_DBUS_NAME(pa->server);
- gchar * pbs = INDICATE_LISTENER_SERVER_DBUS_NAME(pb->server);
+ const gchar * pas = INDICATE_LISTENER_SERVER_DBUS_NAME(pa->server);
+ const gchar * pbs = INDICATE_LISTENER_SERVER_DBUS_NAME(pb->server);
return g_strcmp0(pas, pbs);
}
@@ -90,8 +90,8 @@ imList_equal (gconstpointer a, gconstpointer b)
pa = (imList_t *)a;
pb = (imList_t *)b;
- gchar * pas = INDICATE_LISTENER_SERVER_DBUS_NAME(pa->server);
- gchar * pbs = INDICATE_LISTENER_SERVER_DBUS_NAME(pb->server);
+ const gchar * pas = INDICATE_LISTENER_SERVER_DBUS_NAME(pa->server);
+ const gchar * pbs = INDICATE_LISTENER_SERVER_DBUS_NAME(pb->server);
guint pai = INDICATE_LISTENER_INDICATOR_ID(pa->indicator);
guint pbi = INDICATE_LISTENER_INDICATOR_ID(pb->indicator);