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/inc | |
parent | f0685e2c69a3a31c2669c67d7638e7a1dbd203a3 (diff) |
tubes: remove unused TeleManager::mbAcceptIncoming
Change-Id: Idb4f8e4e47be88efa9e199588936cf426b3e1ce4
Diffstat (limited to 'tubes/inc')
-rw-r--r-- | tubes/inc/tubes/manager.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tubes/inc/tubes/manager.hxx b/tubes/inc/tubes/manager.hxx index f926ec122ef1..6eb7915e31bd 100644 --- a/tubes/inc/tubes/manager.hxx +++ b/tubes/inc/tubes/manager.hxx @@ -79,11 +79,10 @@ public: Whether to create and iterate an own GMainLoop. For testing purposes when no GMainLoop is available. */ - TeleManager( bool bAcceptIncoming = true, bool bCreateOwnGMainLoop = false ); + TeleManager( bool bCreateOwnGMainLoop = false ); ~TeleManager(); - static TeleManager *get() { return pSingleton; } - static TeleManager *get( bool bAcceptIncoming ); + static TeleManager *get(); void unref(); /** Connect to DBus and create AccountManager. */ @@ -239,7 +238,6 @@ private: TeleConferenceVector maConferences; - bool mbAcceptIncoming; bool mbChannelReadyHandlerInvoked : 1; static TeleManagerImpl* pImpl; |