diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-16 17:17:45 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2014-04-17 14:22:30 +0100 |
commit | 027b7f0a6fd1ff9ccb9d0ed91fbd9807d31cda7a (patch) | |
tree | bfb089625e9dda129e4cff6602d5a7dbcea9b017 | |
parent | 1790864c868d3348d3ff873efb82c174943a7c2a (diff) |
TpPresenceMixin: rename construct_presence_hash to construct_presence_map
It doesn't return a hash table.
-rw-r--r-- | telepathy-glib/presence-mixin.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/telepathy-glib/presence-mixin.c b/telepathy-glib/presence-mixin.c index 792b0d224..e23cb7e73 100644 --- a/telepathy-glib/presence-mixin.c +++ b/telepathy-glib/presence-mixin.c @@ -171,7 +171,7 @@ struct _TpPresenceMixinPrivate }; -static GVariant *construct_presence_hash ( +static GVariant *construct_presence_map ( const TpPresenceStatusSpec *supported_statuses, GHashTable *contact_statuses); @@ -314,7 +314,7 @@ tp_presence_mixin_emit_presence_update (TpBaseConnection *self, _tp_gdbus_connection_interface_presence1_emit_presences_changed ( self->priv->presence_skeleton, - construct_presence_hash (iface->statuses, contact_statuses)); + construct_presence_map (iface->statuses, contact_statuses)); } /** @@ -532,7 +532,7 @@ construct_presence_variant (TpPresenceStatus *status, } static GVariant * -construct_presence_hash (const TpPresenceStatusSpec *supported_statuses, +construct_presence_map (const TpPresenceStatusSpec *supported_statuses, GHashTable *contact_statuses) { GVariantBuilder builder; |