diff options
author | James Cook <james@lindenlab.com> | 2010-05-26 09:24:06 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-26 09:24:06 -0700 |
commit | 640e3a2e9800bdcc772504953af17bd020c1c232 (patch) | |
tree | f809c037cb60e80394cb35eefbbc8358aae0dcb7 /indra/llui/tests/llurlmatch_test.cpp | |
parent | d539145367d74c0881bcf47daefaca4820f04c72 (diff) |
Fix broken Mac build on llurlmatch_test.cpp
Diffstat (limited to 'indra/llui/tests/llurlmatch_test.cpp')
-rw-r--r-- | indra/llui/tests/llurlmatch_test.cpp | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/indra/llui/tests/llurlmatch_test.cpp b/indra/llui/tests/llurlmatch_test.cpp index ab5770dbf2..e5d4c5b09d 100644 --- a/indra/llui/tests/llurlmatch_test.cpp +++ b/indra/llui/tests/llurlmatch_test.cpp @@ -21,6 +21,7 @@ */ #include "../llurlmatch.h" +//#include "../lluiimage.h" #include "lltut.h" // link seams @@ -33,6 +34,26 @@ LLStyle::Params::Params() { } +LLUIImage::LLUIImage(const std::string& name, LLPointer<LLTexture> image) +{ +} + +LLUIImage::~LLUIImage() +{ +} + +//virtual +S32 LLUIImage::getWidth() const +{ + return 0; +} + +//virtual +S32 LLUIImage::getHeight() const +{ + return 0; +} + namespace LLInitParam { BaseBlock::BaseBlock() {} @@ -105,7 +126,6 @@ namespace LLInitParam void TypedParam<LLUIImage*>::setBlockFromValue() {} - bool ParamCompare<LLUIImage*, false>::equals( LLUIImage* const &a, |