summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-03-15 09:41:36 +0000
committerWill Thompson <will.thompson@collabora.co.uk>2011-04-16 14:17:55 +0100
commit1eae063d507e2940d7df1e5ea042590bbc732d3f (patch)
treea13734e3dff88014497cfa5b75669e8cc3937a78 /examples
parent192ccf185ac62f1c1f91d046d6cd59306c76c5f4 (diff)
Examples: implement Conn.I.ContactBlocking in CL example
Diffstat (limited to 'examples')
-rw-r--r--examples/cm/contactlist/conn.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/cm/contactlist/conn.c b/examples/cm/contactlist/conn.c
index 05a30261..354e7fd5 100644
--- a/examples/cm/contactlist/conn.c
+++ b/examples/cm/contactlist/conn.c
@@ -33,6 +33,8 @@ G_DEFINE_TYPE_WITH_CODE (ExampleContactListConnection,
tp_base_contact_list_mixin_list_iface_init);
G_IMPLEMENT_INTERFACE (TP_TYPE_SVC_CONNECTION_INTERFACE_CONTACT_GROUPS,
tp_base_contact_list_mixin_groups_iface_init);
+ G_IMPLEMENT_INTERFACE (TP_TYPE_SVC_CONNECTION_INTERFACE_CONTACT_BLOCKING,
+ tp_base_contact_list_mixin_blocking_iface_init);
G_IMPLEMENT_INTERFACE (TP_TYPE_SVC_CONNECTION_INTERFACE_PRESENCE,
tp_presence_mixin_iface_init);
G_IMPLEMENT_INTERFACE (TP_TYPE_SVC_CONNECTION_INTERFACE_SIMPLE_PRESENCE,
@@ -393,6 +395,7 @@ static const gchar *interfaces_always_present[] = {
TP_IFACE_CONNECTION_INTERFACE_CONTACTS,
TP_IFACE_CONNECTION_INTERFACE_CONTACT_LIST,
TP_IFACE_CONNECTION_INTERFACE_CONTACT_GROUPS,
+ TP_IFACE_CONNECTION_INTERFACE_CONTACT_BLOCKING,
TP_IFACE_CONNECTION_INTERFACE_PRESENCE,
TP_IFACE_CONNECTION_INTERFACE_REQUESTS,
TP_IFACE_CONNECTION_INTERFACE_SIMPLE_PRESENCE,