summaryrefslogtreecommitdiff
path: root/indra/newview/tests/llslurl_test.cpp
diff options
context:
space:
mode:
authorSergei Litovchuk <slitovchuk@productengine.com>2010-08-02 22:26:49 +0300
committerSergei Litovchuk <slitovchuk@productengine.com>2010-08-02 22:26:49 +0300
commit48ccc7ccfbe3e94f9dd78ced588e0a76d03fe070 (patch)
treeaf9b410d25c224d284321a00f0372cc145c3e9fa /indra/newview/tests/llslurl_test.cpp
parent74ed51e77d7a44b845dcc12d1d7ad6a426caaa2d (diff)
Fixed build (unit tests linking errors).
--HG-- branch : product-engine
Diffstat (limited to 'indra/newview/tests/llslurl_test.cpp')
-rw-r--r--indra/newview/tests/llslurl_test.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/tests/llslurl_test.cpp b/indra/newview/tests/llslurl_test.cpp
index 803020dc7a..4db7efa090 100644
--- a/indra/newview/tests/llslurl_test.cpp
+++ b/indra/newview/tests/llslurl_test.cpp
@@ -79,6 +79,11 @@ LLSD LLControlGroup::getLLSD(const std::string& name)
return LLSD();
}
+LLPointer<LLControlVariable> LLControlGroup::getControl(const std::string& name)
+{
+ ctrl_name_table_t::iterator iter = mNameTable.find(name);
+ return iter == mNameTable.end() ? LLPointer<LLControlVariable>() : iter->second;
+}
LLControlGroup gSavedSettings("test");