diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-13 23:35:05 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-17 16:40:26 +0200 |
commit | ee956067d633f8e0b40e303e58c10bba42a0da85 (patch) | |
tree | 7613a7a607a5c6ea508f8dbf9263a66a2b060f73 /tubes/source/manager.cxx | |
parent | 53b180a49af8aaa25b9b38a8b020113483f0af6b (diff) |
tubes: remove now unused code, when we don't use maConferences
Change-Id: I403253793791236eaf8e9fd3fc72489ebd447d99
Diffstat (limited to 'tubes/source/manager.cxx')
-rw-r--r-- | tubes/source/manager.cxx | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/tubes/source/manager.cxx b/tubes/source/manager.cxx index b524942071b1..b026d85a4da1 100644 --- a/tubes/source/manager.cxx +++ b/tubes/source/manager.cxx @@ -733,58 +733,6 @@ TpAccount* TeleManager::getAccount( const rtl::OString& rAccountID ) return pAccount; } - -sal_uInt32 TeleManager::sendPacket( const TelePacket& rPacket ) const -{ - INFO_LOGGER( "TeleManager::sendPacket"); - - sal_uInt32 nSent = 0; - // Access to data ByteStream array forces reference count of one, provide - // non-const instance here before passing it down to each conference. - TelePacket aPacket( rPacket); - for (TeleConferenceVector::const_iterator it = maConferences.begin(); it != maConferences.end(); ++it) - { - if ((*it)->sendPacket( aPacket)) - ++nSent; - /* TODO: what if failed? */ - } - return nSent; -} - -bool TeleManager::popPacket( TelePacket& rPacket ) -{ - INFO_LOGGER( "TeleManager::popPacket"); - - for (TeleConferenceVector::const_iterator it = maConferences.begin(); it != maConferences.end(); ++it) - { - if ((*it)->popPacket( rPacket)) - return true; - } - return false; -} - -void TeleManager::sendFile( rtl::OUString &localUri, TeleConference::FileSentCallback pCallback, void* pUserData) -{ - INFO_LOGGER( "TeleManager::sendFile"); - - /* TODO: pluralize */ - for (TeleConferenceVector::const_iterator it = maConferences.begin(); it != maConferences.end(); ++it) - { - (*it)->sendFile( localUri, pCallback, pUserData); - return; - } -} - -void TeleManager::unregisterConference( TeleConferencePtr pConference ) -{ - INFO_LOGGER( "TeleManager::unregisterConference"); - - TeleConferenceVector::iterator it = ::std::find( maConferences.begin(), maConferences.end(), pConference); - if (it != maConferences.end()) - maConferences.erase( it); -} - - void TeleManager::disconnect() { INFO_LOGGER( "TeleManager::disconnect"); @@ -797,20 +745,6 @@ void TeleManager::disconnect() tp_base_client_unregister( pImpl->mpFileTransferClient); pImpl->mpFileTransferClient = NULL; - - size_t nSize = maConferences.size(); - for (size_t i=0; i < nSize; /*nop*/) - { - maConferences[i]->close(); - // close() may remove the conference from the vector and move following - // elements to this position (hence we don't use an iterator here), - // adjust accordingly. - size_t n = maConferences.size(); - if (n < nSize) - nSize = n; - else - ++i; - } } |