diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-13 19:34:57 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-11-13 19:37:18 +0800 |
commit | 9355fec8db2944c7d32a0e0ba3e1632d8088c88e (patch) | |
tree | 635314a1cd346f25b079e4991a2db0acb2cdd970 /libempathy-gtk/empathy-notify-manager.c | |
parent | ba1efb5e0580e0c11da14eae4b85b1e9913bb6bf (diff) | |
download | gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.tar gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.tar.gz gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.tar.bz2 gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.tar.lz gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.tar.xz gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.tar.zst gsoc2013-empathy-9355fec8db2944c7d32a0e0ba3e1632d8088c88e.zip |
change 'capa' to 'cap'
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 * |