diff options
author | callum <none@none> | 2010-10-06 15:34:32 -0700 |
---|---|---|
committer | callum <none@none> | 2010-10-06 15:34:32 -0700 |
commit | f5b3fc596d029d3ac2f953ee94ea3ae131d00940 (patch) | |
tree | 565168131e050687f4793fa0d9aabe23ad3dce5e /indra/llui/tests | |
parent | b285fd4d0abf9113fc416c30ac115db06c9f2ebf (diff) |
Add support for debug setting to disable link highlight & follow in URLs that appear in XUI widgets
Diffstat (limited to 'indra/llui/tests')
-rw-r--r-- | indra/llui/tests/llurlentry_test.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/llui/tests/llurlentry_test.cpp b/indra/llui/tests/llurlentry_test.cpp index 95affe4460..4c2b3a8d59 100644 --- a/indra/llui/tests/llurlentry_test.cpp +++ b/indra/llui/tests/llurlentry_test.cpp @@ -27,12 +27,21 @@ #include "linden_common.h" #include "../llurlentry.h" +#include "../lluictrl.h" #include "llurlentry_stub.cpp" #include "lltut.h" #include "../lluicolortable.h" #include <boost/regex.hpp> +typedef std::map<std::string, LLControlGroup*> settings_map_t; +settings_map_t LLUI::sSettingGroups; + +BOOL LLControlGroup::getBOOL(const std::string& name) +{ + return false; +} + LLUIColor LLUIColorTable::getColor(const std::string& name, const LLColor4& default_color) const { return LLUIColor(); |