diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-13 19:34:30 +0200 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-07-17 16:40:24 +0200 |
commit | eafd7161ed544cebb450a334d8c13d15170e987b (patch) | |
tree | fd22d2ddd86bd08e2a109dc2b14b333b22bd4a6f /tubes/source/manager.cxx | |
parent | f0685e2c69a3a31c2669c67d7638e7a1dbd203a3 (diff) |
tubes: remove unused TeleManager::mbAcceptIncoming
Change-Id: Idb4f8e4e47be88efa9e199588936cf426b3e1ce4
Diffstat (limited to 'tubes/source/manager.cxx')
-rw-r--r-- | tubes/source/manager.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tubes/source/manager.cxx b/tubes/source/manager.cxx index 047e54abf98c..14df6e1208f1 100644 --- a/tubes/source/manager.cxx +++ b/tubes/source/manager.cxx @@ -325,9 +325,8 @@ static void TeleManager_AccountManagerReadyHandler( } -TeleManager::TeleManager( bool bAcceptIncoming, bool bCreateOwnGMainLoop ) +TeleManager::TeleManager( bool bCreateOwnGMainLoop ) : - mbAcceptIncoming( bAcceptIncoming ), mbChannelReadyHandlerInvoked( false) { // The glib object types need to be initialized, else we aren't going @@ -359,11 +358,11 @@ TeleManager::~TeleManager() } TeleManager * -TeleManager::get( bool bAcceptIncoming ) +TeleManager::get() { MutexGuard aGuard( GetAnotherMutex()); if (!pSingleton) - pSingleton = new TeleManager(bAcceptIncoming); + pSingleton = new TeleManager(); nAnotherRefCount++; return pSingleton; |