diff options
author | richard <none@none> | 2010-02-01 12:39:59 -0800 |
---|---|---|
committer | richard <none@none> | 2010-02-01 12:39:59 -0800 |
commit | 45e700cb3ef9c56aaf373a8b4acafb4fc07a5972 (patch) | |
tree | 394d990d038387952d0668da989dd4d7da072c86 /indra/llxuixml/lluicolor.cpp | |
parent | c339017d2e156a68f1e300a7668f2a9f6e6141f7 (diff) | |
parent | f99a7b23ae0cee0d3e96b0b89d82e5c35bb07433 (diff) |
merge
Diffstat (limited to 'indra/llxuixml/lluicolor.cpp')
-rw-r--r-- | indra/llxuixml/lluicolor.cpp | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/indra/llxuixml/lluicolor.cpp b/indra/llxuixml/lluicolor.cpp index 424d878a6b..0049ec055c 100644 --- a/indra/llxuixml/lluicolor.cpp +++ b/indra/llxuixml/lluicolor.cpp @@ -16,13 +16,15 @@ LLUIColor::LLUIColor() { } -LLUIColor::LLUIColor(const LLColor4* color) - :mColorPtr(color) + +LLUIColor::LLUIColor(const LLColor4& color) +: mColor(color), + mColorPtr(NULL) { } -LLUIColor::LLUIColor(const LLColor4& color) - :mColor(color), mColorPtr(NULL) +LLUIColor::LLUIColor(const LLUIColor* color) +: mColorPtr(color) { } @@ -32,14 +34,14 @@ void LLUIColor::set(const LLColor4& color) mColorPtr = NULL; } -void LLUIColor::set(const LLColor4* color) +void LLUIColor::set(const LLUIColor* color) { mColorPtr = color; } const LLColor4& LLUIColor::get() const { - return (mColorPtr == NULL ? mColor : *mColorPtr); + return (mColorPtr == NULL ? mColor : mColorPtr->get()); } LLUIColor::operator const LLColor4& () const |