summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-04-22 15:22:09 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-04-22 15:34:08 +0100
commit0bba123bbff54c1b4848d46c1d952283d6498dc7 (patch)
treea9a473578ceb7fcd8539b43fd4f575f42899e0c7
parentb393d58abf79d40dcc2fc7473e5e776126188822 (diff)
IdleProtocol: stop implementing get_interfaces_array
The base class does this in terms of GDBusObjectSkeleton now.
-rw-r--r--src/protocol.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/protocol.c b/src/protocol.c
index a4b5c7d..49287ca 100644
--- a/src/protocol.c
+++ b/src/protocol.c
@@ -179,17 +179,6 @@ identify_account (TpBaseProtocol *self G_GNUC_UNUSED,
return nick_at_server;
}
-static GPtrArray *
-get_interfaces_array (TpBaseProtocol *self)
-{
- GPtrArray *interfaces;
-
- interfaces = TP_BASE_PROTOCOL_CLASS (
- idle_protocol_parent_class)->get_interfaces_array (self);
-
- return interfaces;
-}
-
static void
get_connection_details (TpBaseProtocol *self,
GStrv *connection_interfaces,
@@ -250,7 +239,6 @@ idle_protocol_class_init (IdleProtocolClass *klass)
base_class->new_connection = new_connection;
base_class->normalize_contact = normalize_contact;
base_class->identify_account = identify_account;
- base_class->get_interfaces_array = get_interfaces_array;
base_class->get_connection_details = get_connection_details;
base_class->dup_authentication_types = dup_authentication_types;
}