diff options
Diffstat (limited to 'libempathy-gtk/empathy-notify-manager.c')
-rw-r--r-- | libempathy-gtk/empathy-notify-manager.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libempathy-gtk/empathy-notify-manager.c b/libempathy-gtk/empathy-notify-manager.c index 6a9ee3971..b87bb4965 100644 --- a/libempathy-gtk/empathy-notify-manager.c +++ b/libempathy-gtk/empathy-notify-manager.c @@ -101,11 +101,11 @@ empathy_notify_manager_init (EmpathyNotifyManager *self) list = notify_get_server_caps (); for (l = list; l != NULL; l = g_list_next (l)) { - gchar *capa = l->data; + gchar *cap = l->data; - DEBUG ("add capability: %s", capa); + DEBUG ("add capability: %s", cap); /* owernship of the string is transfered to the hash table */ - g_hash_table_insert (priv->capabilities, capa, GUINT_TO_POINTER (TRUE)); + g_hash_table_insert (priv->capabilities, cap, GUINT_TO_POINTER (TRUE)); } g_list_free (list); } @@ -118,11 +118,11 @@ empathy_notify_manager_dup_singleton (void) gboolean empathy_notify_manager_has_capability (EmpathyNotifyManager *self, - const gchar *capa) + const gchar *cap) { EmpathyNotifyManagerPriv *priv = GET_PRIV (self); - return g_hash_table_lookup (priv->capabilities, capa) != NULL; + return g_hash_table_lookup (priv->capabilities, cap) != NULL; } GdkPixbuf * |