summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorDmitry Oleshko <doleshko@productengine.com>2009-11-27 13:25:08 +0200
committerDmitry Oleshko <doleshko@productengine.com>2009-11-27 13:25:08 +0200
commit00fe55c9b619a4f53f36dcb5217305abe42ca3cb (patch)
tree89cbadbc4497f44869ffcf33f1ad96137094fd43 /indra
parent03fc1c95931dbf4e1e2e06b3096ce251297636d6 (diff)
fix linux build (no default section in switch)
--HG-- branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llimview.cpp2
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;
}
}