diff options
Diffstat (limited to 'linden/indra/llui/llctrlselectioninterface.h')
-rw-r--r-- | linden/indra/llui/llctrlselectioninterface.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/linden/indra/llui/llctrlselectioninterface.h b/linden/indra/llui/llctrlselectioninterface.h index f303861..67743de 100644 --- a/linden/indra/llui/llctrlselectioninterface.h +++ b/linden/indra/llui/llctrlselectioninterface.h | |||
@@ -84,16 +84,16 @@ public: | |||
84 | 84 | ||
85 | virtual void addColumn(const LLSD& column, EAddPosition pos = ADD_BOTTOM) = 0; | 85 | virtual void addColumn(const LLSD& column, EAddPosition pos = ADD_BOTTOM) = 0; |
86 | virtual void clearColumns() = 0; | 86 | virtual void clearColumns() = 0; |
87 | virtual void setColumnLabel(const LLString& column, const LLString& label) = 0; | 87 | virtual void setColumnLabel(const std::string& column, const std::string& label) = 0; |
88 | // TomY TODO: Document this | 88 | // TomY TODO: Document this |
89 | virtual LLScrollListItem* addElement(const LLSD& value, EAddPosition pos = ADD_BOTTOM, void* userdata = NULL) = 0; | 89 | virtual LLScrollListItem* addElement(const LLSD& value, EAddPosition pos = ADD_BOTTOM, void* userdata = NULL) = 0; |
90 | 90 | ||
91 | LLScrollListItem* addSimpleElement(const LLString& value); // defaults to bottom | 91 | LLScrollListItem* addSimpleElement(const std::string& value); // defaults to bottom |
92 | LLScrollListItem* addSimpleElement(const LLString& value, EAddPosition pos); // defaults to no LLSD() id | 92 | LLScrollListItem* addSimpleElement(const std::string& value, EAddPosition pos); // defaults to no LLSD() id |
93 | virtual LLScrollListItem* addSimpleElement(const LLString& value, EAddPosition pos, const LLSD& id) = 0; | 93 | virtual LLScrollListItem* addSimpleElement(const std::string& value, EAddPosition pos, const LLSD& id) = 0; |
94 | 94 | ||
95 | virtual void clearRows() = 0; | 95 | virtual void clearRows() = 0; |
96 | virtual void sortByColumn(LLString name, BOOL ascending) = 0; | 96 | virtual void sortByColumn(const std::string& name, BOOL ascending) = 0; |
97 | }; | 97 | }; |
98 | 98 | ||
99 | class LLCtrlScrollInterface | 99 | class LLCtrlScrollInterface |