diff options
author | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-03-06 01:17:34 +0200 |
---|---|---|
committer | Sergei Litovchuk <slitovchuk@productengine.com> | 2010-03-06 01:17:34 +0200 |
commit | f499260782a0c94c4f164a743da9d2690240dad7 (patch) | |
tree | 85fdb59022619312090071dabe7f5d597ea3b669 /indra/llui/llcombobox.h | |
parent | c4c3e6beddd1cbbe56d5654c455f8f0c73869634 (diff) |
Implemented (EXT-4715) Add maturity icons to Classifieds - create and details.
--HG--
branch : product-engine
Diffstat (limited to 'indra/llui/llcombobox.h')
-rw-r--r-- | indra/llui/llcombobox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llcombobox.h b/indra/llui/llcombobox.h index 3cc2a8f5d1..62aab92abc 100644 --- a/indra/llui/llcombobox.h +++ b/indra/llui/llcombobox.h @@ -150,7 +150,7 @@ public: // Get name of current item. Returns an empty string if not found. const std::string getSimple() const; // Get contents of column x of selected row - const std::string getSelectedItemLabel(S32 column = 0) const; + virtual const std::string getSelectedItemLabel(S32 column = 0) const; // Sets the label, which doesn't have to exist in the label. // This is probably a UI abuse. @@ -247,6 +247,7 @@ public: }; /*virtual*/ void setValue(const LLSD& value); + /*virtual*/ const std::string getSelectedItemLabel(S32 column = 0) const; private: enum EColumnIndex |