diff options
author | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:01 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2008-04-11 21:11:01 +0800 |
commit | 0ac4afe4ffd170309101271d4b0b5fde734b07e4 (patch) | |
tree | 908df936cf9bf207f583cb00b3bcc69ae0904055 /libempathy/empathy-tp-call.h | |
parent | 418cea2b2463a2af579775a9e6cab230fb7cfe26 (diff) | |
download | gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.tar gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.tar.gz gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.tar.bz2 gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.tar.lz gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.tar.xz gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.tar.zst gsoc2013-empathy-0ac4afe4ffd170309101271d4b0b5fde734b07e4.zip |
Do not take McAccount as construct param, it can be found from the TpChannel
svn path=/trunk/; revision=905
Diffstat (limited to 'libempathy/empathy-tp-call.h')
-rw-r--r-- | libempathy/empathy-tp-call.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libempathy/empathy-tp-call.h b/libempathy/empathy-tp-call.h index f5333bba5..c08c8b657 100644 --- a/libempathy/empathy-tp-call.h +++ b/libempathy/empathy-tp-call.h @@ -21,11 +21,9 @@ #ifndef __EMPATHY_TP_CALL_H__ #define __EMPATHY_TP_CALL_H__ -#include <telepathy-glib/connection.h> +#include <glib.h> #include <telepathy-glib/channel.h> -#include <libmissioncontrol/mission-control.h> - G_BEGIN_DECLS #define EMPATHY_TYPE_TP_CALL (empathy_tp_call_get_type ()) @@ -68,7 +66,7 @@ typedef struct } EmpathyTpCallStream; GType empathy_tp_call_get_type (void) G_GNUC_CONST; -EmpathyTpCall *empathy_tp_call_new (TpConnection *connection, TpChannel *channel); +EmpathyTpCall *empathy_tp_call_new (TpChannel *channel); void empathy_tp_call_accept_incoming_call (EmpathyTpCall *call); void empathy_tp_call_request_video_stream_direction (EmpathyTpCall *call, |