diff options
author | Callum Prentice <callum@lindenlab.com> | 2010-03-04 14:33:25 -0800 |
---|---|---|
committer | Callum Prentice <callum@lindenlab.com> | 2010-03-04 14:33:25 -0800 |
commit | 88cf648176f9ce8214516f4d81d8d1cd55cede2f (patch) | |
tree | 9aac41a6c360fe826aaef02cbfd284e06f9b5770 /indra/newview/llgrouplist.h | |
parent | 34c8f6f7fa728c139a0da0deaccf6fda3d228680 (diff) | |
parent | 14579a1ccab2817b019a61ffe1ac6b5edc3eb146 (diff) |
Merge with tip
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; } |