diff options
| author | Richard Linden <none@none> | 2013-09-09 18:58:41 -0700 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-09-09 18:58:41 -0700 | 
| commit | 52da9f5f49e0e300943abc3afa6944e6bee0cdd1 (patch) | |
| tree | b61a1aa1775b3faca1baf492a969a51d7ce8b3fe /indra/newview/llimpanel.cpp | |
| parent | 55ae6a7962cdc9a9d7d087fbc529d30db9c37013 (diff) | |
| parent | 91850b6cfacb32ed32265ebd37ce7690dd79a0b0 (diff) | |
merge with viewer-release
Diffstat (limited to 'indra/newview/llimpanel.cpp')
| -rwxr-xr-x | indra/newview/llimpanel.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
diff --git a/indra/newview/llimpanel.cpp b/indra/newview/llimpanel.cpp index 59272d721f..34ccab0302 100755 --- a/indra/newview/llimpanel.cpp +++ b/indra/newview/llimpanel.cpp @@ -159,7 +159,7 @@ LLFloaterIMPanel::LLFloaterIMPanel(const std::string& session_label,  		mCallBackEnabled = LLVoiceClient::getInstance()->isSessionCallBackPossible(mSessionUUID);  		break;  	default: -		llwarns << "Unknown session type" << llendl; +		LL_WARNS() << "Unknown session type" << LL_ENDL;  		xml_filename = "floater_instant_message.xml";  		break;  	} @@ -396,8 +396,8 @@ public:  	void errorWithContent(U32 statusNum, const std::string& reason, const LLSD& content)  	{ -		llwarns << "Error inviting all agents to session [status:"  -				<< statusNum << "]: " << content << llendl; +		LL_WARNS() << "Error inviting all agents to session [status:"  +				<< statusNum << "]: " << content << LL_ENDL;  		//throw something back to the viewer here?  	} @@ -417,7 +417,7 @@ BOOL LLFloaterIMPanel::inviteToSession(const std::vector<LLUUID>& ids)  	if( isInviteAllowed() && (count > 0) )  	{ -		llinfos << "LLFloaterIMPanel::inviteToSession() - inviting participants" << llendl; +		LL_INFOS() << "LLFloaterIMPanel::inviteToSession() - inviting participants" << LL_ENDL;  		std::string url = region->getCapability("ChatSessionRequest"); @@ -439,9 +439,9 @@ BOOL LLFloaterIMPanel::inviteToSession(const std::vector<LLUUID>& ids)  	}  	else  	{ -		llinfos << "LLFloaterIMPanel::inviteToSession -" +		LL_INFOS() << "LLFloaterIMPanel::inviteToSession -"  				<< " no need to invite agents for " -				<< mDialog << llendl; +				<< mDialog << LL_ENDL;  		// successful add, because everyone that needed to get added  		// was added.  	} @@ -778,7 +778,7 @@ void LLFloaterIMPanel::sendMsg()  		&& (mDialog == IM_NOTHING_SPECIAL)  		&& mOtherParticipantUUID.isNull())  	{ -		llinfos << "Cannot send IM to everyone unless you're a god." << llendl; +		LL_INFOS() << "Cannot send IM to everyone unless you're a god." << LL_ENDL;  		return;  	}  | 
