diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-17 15:35:50 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-04-30 11:47:18 +0200 |
commit | b2d1595361a5c85f8f25548e1178e267404ec63a (patch) | |
tree | 61fe53806b087adebf2863f6a318809bd8eb21bb | |
parent | 911847cd4fb1c1a27ebc0f537d8afe5032f4143c (diff) |
room-list-chan: implement close
-rw-r--r-- | tests/lib/room-list-chan.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/lib/room-list-chan.c b/tests/lib/room-list-chan.c index 481beaacf..12a87a319 100644 --- a/tests/lib/room-list-chan.c +++ b/tests/lib/room-list-chan.c @@ -112,6 +112,12 @@ fill_immutable_properties (TpBaseChannel *chan, } static void +room_list_chan_close (TpBaseChannel *channel) +{ + tp_base_channel_destroyed (channel); +} + +static void tp_tests_room_list_chan_class_init ( TpTestsRoomListChanClass *klass) { @@ -131,6 +137,7 @@ tp_tests_room_list_chan_class_init ( base_class->channel_type = TP_IFACE_CHANNEL_TYPE_ROOM_LIST; base_class->target_handle_type = TP_HANDLE_TYPE_NONE; base_class->fill_immutable_properties = fill_immutable_properties; + base_class->close = room_list_chan_close; spec = g_param_spec_string ("server", "server", "Server", |