aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llui/llctrlselectioninterface.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/llui/llctrlselectioninterface.cpp
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/llui/llctrlselectioninterface.cpp')
-rw-r--r--linden/indra/llui/llctrlselectioninterface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llui/llctrlselectioninterface.cpp b/linden/indra/llui/llctrlselectioninterface.cpp
index 996f5b3..3ef0f83 100644
--- a/linden/indra/llui/llctrlselectioninterface.cpp
+++ b/linden/indra/llui/llctrlselectioninterface.cpp
@@ -53,12 +53,12 @@ BOOL LLCtrlSelectionInterface::deselectByValue(LLSD value)
53LLCtrlListInterface::~LLCtrlListInterface() 53LLCtrlListInterface::~LLCtrlListInterface()
54{ } 54{ }
55 55
56LLScrollListItem* LLCtrlListInterface::addSimpleElement(const LLString& value) 56LLScrollListItem* LLCtrlListInterface::addSimpleElement(const std::string& value)
57{ 57{
58 return addSimpleElement(value, ADD_BOTTOM, LLSD()); 58 return addSimpleElement(value, ADD_BOTTOM, LLSD());
59} 59}
60 60
61LLScrollListItem* LLCtrlListInterface::addSimpleElement(const LLString& value, EAddPosition pos) 61LLScrollListItem* LLCtrlListInterface::addSimpleElement(const std::string& value, EAddPosition pos)
62{ 62{
63 return addSimpleElement(value, pos, LLSD()); 63 return addSimpleElement(value, pos, LLSD());
64} 64}