diff options
author | Palmer <palmer@lindenlab.com> | 2010-03-05 13:11:26 -0800 |
---|---|---|
committer | Palmer <palmer@lindenlab.com> | 2010-03-05 13:11:26 -0800 |
commit | b70951ca1e319e4d4a427a559072ee722588e1ed (patch) | |
tree | 59f8edc208a98a3f74586a0458417a1ce14c00ff /indra/newview/llgrouplist.h | |
parent | dd663449b6f8b802892e11fab7cc2cbce36f734f (diff) | |
parent | 32aa06139e6fb5f2e84d3e657dfbe8961170a804 (diff) |
merge
Diffstat (limited to 'indra/newview/llgrouplist.h')
-rw-r--r-- | indra/newview/llgrouplist.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llgrouplist.h b/indra/newview/llgrouplist.h index f3ac676edd..0e9da25c58 100644 --- a/indra/newview/llgrouplist.h +++ b/indra/newview/llgrouplist.h @@ -74,6 +74,11 @@ public: void setNameFilter(const std::string& filter); void toggleIcons(); bool getIconsVisible() const { return mShowIcons; } + + // *WORKAROUND: two methods to overload appropriate Params due to localization issue: + // no_groups_msg & no_filtered_groups_msg attributes are not defined as translatable in VLT. See EXT-5931 + void setNoGroupsMsg(const std::string& msg) { mNoGroupsMsg = msg; } + void setNoFilteredGroupsMsg(const std::string& msg) { mNoFilteredGroupsMsg = msg; } private: void setDirty(bool val = true) { mDirty = val; } |