~ubuntu-branches/ubuntu/vivid/telepathy-idle/vivid

« back to all changes in this revision

Viewing changes to src/idle-im-channel.c

  • Committer: Package Import Robot
  • Author(s): Simon McVittie
  • Date: 2013-04-24 16:34:58 UTC
  • mfrom: (1.3.5) (7.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130424163458-65p4fj8al2oui3ri
Tags: 0.1.15-1
* Merge from experimental to unstable
* New upstream release
  - update build-dependencies
  - verifies TLS certificates properly (Closes: #706094)

Show diffs side-by-side

added added

removed removed

Lines of Context:
171
171
static GPtrArray *
172
172
idle_im_channel_get_interfaces (TpBaseChannel *channel)
173
173
{
174
 
  GPtrArray *interfaces = g_ptr_array_sized_new (2);
 
174
  GPtrArray *interfaces =
 
175
      TP_BASE_CHANNEL_CLASS (idle_im_channel_parent_class)->get_interfaces (
 
176
          channel);
175
177
 
176
178
  g_ptr_array_add (interfaces, TP_IFACE_CHANNEL_INTERFACE_MESSAGES);
177
179
  g_ptr_array_add (interfaces, TP_IFACE_CHANNEL_INTERFACE_DESTROYABLE);