diff options
author | Dmitry Oleshko <doleshko@productengine.com> | 2009-11-27 13:25:08 +0200 |
---|---|---|
committer | Dmitry Oleshko <doleshko@productengine.com> | 2009-11-27 13:25:08 +0200 |
commit | 00fe55c9b619a4f53f36dcb5217305abe42ca3cb (patch) | |
tree | 89cbadbc4497f44869ffcf33f1ad96137094fd43 /indra | |
parent | 03fc1c95931dbf4e1e2e06b3096ce251297636d6 (diff) |
fix linux build (no default section in switch)
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llimview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 9a0dcc11e5..1451448b0b 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -216,6 +216,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES break; case LLVoiceChannel::STATE_CONNECTED : LLIMModel::getInstance()->addMessage(mSessionID, "You", gAgent.getID(), "Joined the voice call"); + default: break; } } @@ -228,6 +229,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES break; case LLVoiceChannel::STATE_CONNECTED : LLIMModel::getInstance()->addMessage(mSessionID, other_avatar_name, mOtherParticipantID, "Joined the voice call"); + default: break; } } |