diff options
| author | Igor Borovkov <iborovkov@productengine.com> | 2009-12-14 18:03:41 +0200 | 
|---|---|---|
| committer | Igor Borovkov <iborovkov@productengine.com> | 2009-12-14 18:03:41 +0200 | 
| commit | a137125afdfcf729b626a92d876a4c652c97c50c (patch) | |
| tree | e28ee9ac1e116a283e84169962323030f67bf689 | |
| parent | c1b31cd97accfbd67f12ffbdff41f61ba9a01843 (diff) | |
fixed build
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llimview.cpp | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index b31c484529..b50d4674f7 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -2043,12 +2043,11 @@ LLUUID LLIMMgr::addP2PSession(const std::string& name,  LLUUID LLIMMgr::addSession(  	const std::string& name,  	EInstantMessage dialog, -	const LLUUID& other_participant_id, -	bool voice = false) +	const LLUUID& other_participant_id)  {  	LLDynamicArray<LLUUID> ids;  	ids.put(other_participant_id); -	return addSession(name, dialog, other_participant_id, ids, voice = false); +	return addSession(name, dialog, other_participant_id, ids);  }  // Adds a session using the given session_id.  If the session already exists  @@ -2057,8 +2056,7 @@ LLUUID LLIMMgr::addSession(  	const std::string& name,  	EInstantMessage dialog,  	const LLUUID& other_participant_id, -	const LLDynamicArray<LLUUID>& ids, -	bool voice = false) +	const LLDynamicArray<LLUUID>& ids)  {  	if (0 == ids.getLength())  	{  | 
