[next] telepathy-glib: Get rid of the last few references to TpIntSet (it' s now TpIntset)
Simon McVittie
smcv at kemper.freedesktop.org
Thu May 3 05:47:00 PDT 2012
Module: telepathy-glib
Branch: next
Commit: e77bd67b1c51f0399c918754ed7f7ab227c986e1
URL: http://cgit.freedesktop.org/telepathy/telepathy-glib/commit/?id=e77bd67b1c51f0399c918754ed7f7ab227c986e1
Author: Simon McVittie <simon.mcvittie at collabora.co.uk>
Date: Wed May 2 19:31:23 2012 +0100
Get rid of the last few references to TpIntSet (it's now TpIntset)
---
telepathy-glib/connection-internal.h | 2 +-
telepathy-glib/connection.c | 2 +-
tests/lib/contact-list-manager.c | 6 +++---
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/telepathy-glib/connection-internal.h b/telepathy-glib/connection-internal.h
index 5cfb63b..54572cc 100644
--- a/telepathy-glib/connection-internal.h
+++ b/telepathy-glib/connection-internal.h
@@ -53,7 +53,7 @@ struct _TpConnectionPrivate {
/* items are GQuarks that represent arguments to
* Connection.AddClientInterests */
- TpIntSet *interests;
+ TpIntset *interests;
/* TpHandle => weak ref to TpContact */
GHashTable *contacts;
diff --git a/telepathy-glib/connection.c b/telepathy-glib/connection.c
index 2fa2faf..345ea93 100644
--- a/telepathy-glib/connection.c
+++ b/telepathy-glib/connection.c
@@ -1571,7 +1571,7 @@ tp_connection_dispose (GObject *object)
if (self->priv->interests != NULL)
{
- TpIntSetIter iter = TP_INTSET_ITER_INIT (self->priv->interests);
+ TpIntsetIter iter = TP_INTSET_ITER_INIT (self->priv->interests);
guint size = tp_intset_size (self->priv->interests);
GPtrArray *strings;
diff --git a/tests/lib/contact-list-manager.c b/tests/lib/contact-list-manager.c
index 0b78281..638c92b 100644
--- a/tests/lib/contact-list-manager.c
+++ b/tests/lib/contact-list-manager.c
@@ -199,7 +199,7 @@ contact_list_dup_groups (TpBaseContactList *base)
if (self->priv->groups != NULL)
{
- TpIntSetFastIter iter;
+ TpIntsetFastIter iter;
TpHandle group;
ret = g_ptr_array_sized_new (tp_handle_set_size (self->priv->groups) + 1);
@@ -231,7 +231,7 @@ contact_list_dup_contact_groups (TpBaseContactList *base,
if (d != NULL && d->groups != NULL)
{
- TpIntSetFastIter iter;
+ TpIntsetFastIter iter;
TpHandle group;
ret = g_ptr_array_sized_new (tp_handle_set_size (d->groups) + 1);
@@ -297,7 +297,7 @@ contact_list_set_contact_groups_async (TpBaseContactList *base,
TpIntset *set, *added_set, *removed_set;
GPtrArray *added_names, *removed_names;
GPtrArray *new_groups;
- TpIntSetFastIter iter;
+ TpIntsetFastIter iter;
TpHandle group_handle;
guint i;
More information about the telepathy-commits
mailing list