summaryrefslogtreecommitdiff
path: root/tubes/source
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-07-22 00:32:10 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-07-22 00:34:15 +0200
commit2b2099cbd20d98caa16d8c08a3d94b8e5e34d264 (patch)
tree39ca874823ffaa4f795495260d471cba0963d1db /tubes/source
parent1fe939da1dd34103a4259e072b78508bb15e5cfc (diff)
tubes: do not crash if there is no TeleManager yet
Change-Id: I042c773f071d336c7d402ed7bca2a33b3a998d50
Diffstat (limited to 'tubes/source')
-rw-r--r--tubes/source/manager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/tubes/source/manager.cxx b/tubes/source/manager.cxx
index c771727ab258..49cda03868b4 100644
--- a/tubes/source/manager.cxx
+++ b/tubes/source/manager.cxx
@@ -178,7 +178,7 @@ TeleConference* TeleManager::getConference()
bool TeleManager::hasWaitingConference()
{
- return !pImpl->msCurrentUUID.isEmpty();
+ return pImpl && !pImpl->msCurrentUUID.isEmpty();
}
void TeleManager::setCurrentUuid( const OString& rUuid )