summaryrefslogtreecommitdiff
path: root/tubes/inc/tubes/conference.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'tubes/inc/tubes/conference.hxx')
-rw-r--r--tubes/inc/tubes/conference.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/tubes/inc/tubes/conference.hxx b/tubes/inc/tubes/conference.hxx
index 118def66621d..fca6e2ed5278 100644
--- a/tubes/inc/tubes/conference.hxx
+++ b/tubes/inc/tubes/conference.hxx
@@ -49,7 +49,7 @@ class TeleConference : public boost::enable_shared_from_this<TeleConference>
{
public:
- TeleConference( TeleManager* pManager, TpAccount *pAccount, TpChannel* pChannel, const rtl::OString& rSessionId );
+ TeleConference( TeleManager* pManager, TpAccount *pAccount, TpDBusTubeChannel* pChannel, const rtl::OString& rSessionId );
~TeleConference();
/// Close channel and call finalize()
@@ -79,8 +79,8 @@ public:
// --- following only to be called only by manager's callbacks ---
// TODO: make friends instead
- void setChannel( TpAccount* pAccount, TpChannel* pChannel );
- TpChannel* getChannel() const { return mpChannel; }
+ void setChannel( TpAccount* pAccount, TpDBusTubeChannel* pChannel );
+ TpDBusTubeChannel* getChannel() const { return mpChannel; }
bool offerTube();
bool acceptTube();
/// got tube accepted on other end as well?
@@ -117,7 +117,7 @@ private:
rtl::OString maSessionId;
TeleManager* mpManager;
TpAccount* mpAccount;
- TpChannel* mpChannel;
+ TpDBusTubeChannel* mpChannel;
gchar* mpAddress;
GDBusConnection* mpTube;
guint maObjectRegistrationId;