Skip to content
Snippets Groups Projects
Commit 00fe55c9 authored by Dmitry Oleshko's avatar Dmitry Oleshko
Browse files

fix linux build (no default section in switch)

--HG--
branch : product-engine
parent 03fc1c95
No related branches found
No related tags found
No related merge requests found
...@@ -216,6 +216,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES ...@@ -216,6 +216,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES
break; break;
case LLVoiceChannel::STATE_CONNECTED : case LLVoiceChannel::STATE_CONNECTED :
LLIMModel::getInstance()->addMessage(mSessionID, "You", gAgent.getID(), "Joined the voice call"); LLIMModel::getInstance()->addMessage(mSessionID, "You", gAgent.getID(), "Joined the voice call");
default:
break; break;
} }
} }
...@@ -228,6 +229,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES ...@@ -228,6 +229,7 @@ void LLIMModel::LLIMSession::onVoiceChannelStateChanged(const LLVoiceChannel::ES
break; break;
case LLVoiceChannel::STATE_CONNECTED : case LLVoiceChannel::STATE_CONNECTED :
LLIMModel::getInstance()->addMessage(mSessionID, other_avatar_name, mOtherParticipantID, "Joined the voice call"); LLIMModel::getInstance()->addMessage(mSessionID, other_avatar_name, mOtherParticipantID, "Joined the voice call");
default:
break; break;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment