diff options
| author | Steven Bennetts <steve@lindenlab.com> | 2008-06-26 00:39:00 +0000 | 
|---|---|---|
| committer | Steven Bennetts <steve@lindenlab.com> | 2008-06-26 00:39:00 +0000 | 
| commit | 25c10ed028da5c547b11f1f461916897272b0e6d (patch) | |
| tree | 350a5858f8970b6e28b2dc395625d74d8bd597b2 /indra/newview/llwlparamset.cpp | |
| parent | 6dd125d375b38455997a0c4b8747659f4c2351aa (diff) | |
QAR-628 merge string-cleanup-5 -r 90476:90508 -> release
dataserver-is-deprecated
Diffstat (limited to 'indra/newview/llwlparamset.cpp')
| -rw-r--r-- | indra/newview/llwlparamset.cpp | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/indra/newview/llwlparamset.cpp b/indra/newview/llwlparamset.cpp index 6e1a3972ea..7a109c42de 100644 --- a/indra/newview/llwlparamset.cpp +++ b/indra/newview/llwlparamset.cpp @@ -80,7 +80,7 @@ void LLWLParamSet::update(LLGLSLShader * shader) const  		i != mParamValues.endMap();  		++i)  	{ -		const LLString& param = i->first; +		const std::string& param = i->first;  		if(	param == "star_brightness" || param == "preset_num" || param == "sun_angle" ||  			param == "east_angle" || param == "enable_cloud_scroll" || @@ -130,7 +130,7 @@ void LLWLParamSet::update(LLGLSLShader * shader) const  	}  } -void LLWLParamSet::set(const char * paramName, float x)  +void LLWLParamSet::set(const std::string& paramName, float x)   {	  	// handle case where no array  	if(mParamValues[paramName].isReal())  @@ -146,19 +146,19 @@ void LLWLParamSet::set(const char * paramName, float x)  	}  } -void LLWLParamSet::set(const char * paramName, float x, float y) { +void LLWLParamSet::set(const std::string& paramName, float x, float y) {  	mParamValues[paramName][0] = x;  	mParamValues[paramName][1] = y;  } -void LLWLParamSet::set(const char * paramName, float x, float y, float z)  +void LLWLParamSet::set(const std::string& paramName, float x, float y, float z)   {  	mParamValues[paramName][0] = x;  	mParamValues[paramName][1] = y;  	mParamValues[paramName][2] = z;  } -void LLWLParamSet::set(const char * paramName, float x, float y, float z, float w)  +void LLWLParamSet::set(const std::string& paramName, float x, float y, float z, float w)   {  	mParamValues[paramName][0] = x;  	mParamValues[paramName][1] = y; @@ -166,7 +166,7 @@ void LLWLParamSet::set(const char * paramName, float x, float y, float z, float  	mParamValues[paramName][3] = w;  } -void LLWLParamSet::set(const char * paramName, const float * val)  +void LLWLParamSet::set(const std::string& paramName, const float * val)   {  	mParamValues[paramName][0] = val[0];  	mParamValues[paramName][1] = val[1]; @@ -174,7 +174,7 @@ void LLWLParamSet::set(const char * paramName, const float * val)  	mParamValues[paramName][3] = val[3];  } -void LLWLParamSet::set(const char * paramName, const LLVector4 & val)  +void LLWLParamSet::set(const std::string& paramName, const LLVector4 & val)   {  	mParamValues[paramName][0] = val.mV[0];  	mParamValues[paramName][1] = val.mV[1]; @@ -182,7 +182,7 @@ void LLWLParamSet::set(const char * paramName, const LLVector4 & val)  	mParamValues[paramName][3] = val.mV[3];  } -void LLWLParamSet::set(const char * paramName, const LLColor4 & val)  +void LLWLParamSet::set(const std::string& paramName, const LLColor4 & val)   {  	mParamValues[paramName][0] = val.mV[0];  	mParamValues[paramName][1] = val.mV[1]; @@ -190,7 +190,7 @@ void LLWLParamSet::set(const char * paramName, const LLColor4 & val)  	mParamValues[paramName][3] = val.mV[3];  } -LLVector4 LLWLParamSet::getVector(const char * paramName, bool& error)  +LLVector4 LLWLParamSet::getVector(const std::string& paramName, bool& error)   {  	// test to see if right type @@ -211,7 +211,7 @@ LLVector4 LLWLParamSet::getVector(const char * paramName, bool& error)  	return val;  } -F32 LLWLParamSet::getFloat(const char * paramName, bool& error)  +F32 LLWLParamSet::getFloat(const std::string& paramName, bool& error)   {  	// test to see if right type | 
