diff options
| author | Callum Prentice <callum@lindenlab.com> | 2010-01-14 09:54:28 -0800 | 
|---|---|---|
| committer | Callum Prentice <callum@lindenlab.com> | 2010-01-14 09:54:28 -0800 | 
| commit | 556d5b8d5fdd442241ff8d81f76f9794bd536716 (patch) | |
| tree | 199cb48a96b9e66b4c28e4c896378475378fa32c | |
| parent | e1105245371e7c34c1be7a772906d3c2f6ca258d (diff) | |
Quick tweak for missing color reference LLColor4::white;
Didn't want to introduce another linker dependency so I specified the color directly.
| -rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index ed8d10a88c..69f19afdad 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -124,7 +124,7 @@ void LLPluginClassMedia::reset()  	mCanPaste = false;  	mMediaName.clear();  	mMediaDescription.clear(); -	mBackgroundColor = LLColor4::white; +	mBackgroundColor = LLColor4(1.0f, 1.0f, 1.0f, 1.0f);  	// media_browser class  	mNavigateURI.clear(); | 
