diff options
| author | Monty Brandenberg <monty@lindenlab.com> | 2014-05-22 22:08:54 +0000 | 
|---|---|---|
| committer | Monty Brandenberg <monty@lindenlab.com> | 2014-05-22 22:08:54 +0000 | 
| commit | 060c728970dc78d30f2cebdbeda7e56ea8de46e2 (patch) | |
| tree | 8f00ce1b3bd564bc6cb81a2bc39a081eb3deca35 /indra/llui/lluicolortable.cpp | |
| parent | f8874d04b8ca238ee99dc464055295cff417a9b2 (diff) | |
| parent | 644ca6a0f8a7759119814f88df93b8e838321a12 (diff) | |
Merge.  Pull in viewer-release after release of 3.7.8
Diffstat (limited to 'indra/llui/lluicolortable.cpp')
| -rwxr-xr-x | indra/llui/lluicolortable.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/indra/llui/lluicolortable.cpp b/indra/llui/lluicolortable.cpp index ffeff15968..244f0c6f00 100755 --- a/indra/llui/lluicolortable.cpp +++ b/indra/llui/lluicolortable.cpp @@ -117,7 +117,7 @@ void LLUIColorTable::insertFromParams(const Params& p, string_color_map_t& table  						unresolved_refs.erase(iter->second);  					} -					llwarns << warning + ending_ref << llendl; +					LL_WARNS() << warning + ending_ref << LL_ENDL;  					break;  				} @@ -156,7 +156,7 @@ void LLUIColorTable::insertFromParams(const Params& p, string_color_map_t& table  						iter != visited_refs.end();  						++iter)  					{ -						llwarns << iter->first << " references a non-existent color" << llendl; +						LL_WARNS() << iter->first << " references a non-existent color" << LL_ENDL;  						unresolved_refs.erase(iter->second);  					} @@ -293,13 +293,13 @@ bool LLUIColorTable::loadFromFilename(const std::string& filename, string_color_  	if(!LLXMLNode::parseFile(filename, root, NULL))  	{ -		llwarns << "Unable to parse color file " << filename << llendl; +		LL_WARNS() << "Unable to parse color file " << filename << LL_ENDL;  		return false;  	}  	if(!root->hasName("colors"))  	{ -		llwarns << filename << " is not a valid color definition file" << llendl; +		LL_WARNS() << filename << " is not a valid color definition file" << LL_ENDL;  		return false;  	} @@ -313,7 +313,7 @@ bool LLUIColorTable::loadFromFilename(const std::string& filename, string_color_  	}  	else  	{ -		llwarns << filename << " failed to load" << llendl; +		LL_WARNS() << filename << " failed to load" << LL_ENDL;  		return false;  	} | 
