summaryrefslogtreecommitdiff
path: root/TelepathyQt4Yell
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-02-09 11:56:45 -0200
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-02-09 11:56:45 -0200
commit62fc5b6fb3321cf04103e95f91e864b84c8657c2 (patch)
treece4064e3240a11a1f7c5d901505ec6c242e09981 /TelepathyQt4Yell
parentd5f326ed1dccca4a7b032db84e785d7e8a665b3f (diff)
CallChannel: Remove awaitingLocal/RemoveAnswer methods in favour of flags().
Diffstat (limited to 'TelepathyQt4Yell')
-rw-r--r--TelepathyQt4Yell/call-channel.cpp22
-rw-r--r--TelepathyQt4Yell/call-channel.h3
2 files changed, 0 insertions, 25 deletions
diff --git a/TelepathyQt4Yell/call-channel.cpp b/TelepathyQt4Yell/call-channel.cpp
index 77d59c2..f1a6608 100644
--- a/TelepathyQt4Yell/call-channel.cpp
+++ b/TelepathyQt4Yell/call-channel.cpp
@@ -960,28 +960,6 @@ CallChannel::~CallChannel()
}
/**
- * Return whether this channel is awaiting local answer.
- *
- * \return \c true if awaiting local answer, \c false otherwise.
- * \sa awaitingRemoteAnswer()
- */
-bool CallChannel::awaitingLocalAnswer() const
-{
- return groupSelfHandleIsLocalPending();
-}
-
-/**
- * Return whether this channel is awaiting remote answer.
- *
- * \return \c true if awaiting remote answer, \c false otherwise.
- * \sa awaitingLocalAnswer()
- */
-bool CallChannel::awaitingRemoteAnswer() const
-{
- return !groupRemotePendingContacts().isEmpty();
-}
-
-/**
* Check whether media streaming by the handler is required for this channel.
*
* If \c false, all of the media streaming is done by some mechanism outside the scope
diff --git a/TelepathyQt4Yell/call-channel.h b/TelepathyQt4Yell/call-channel.h
index f4ad81b..eae6edc 100644
--- a/TelepathyQt4Yell/call-channel.h
+++ b/TelepathyQt4Yell/call-channel.h
@@ -173,9 +173,6 @@ public:
virtual ~CallChannel();
- bool awaitingLocalAnswer() const;
- bool awaitingRemoteAnswer() const;
-
bool handlerStreamingRequired() const;
Tp::PendingOperation *accept();