diff options
author | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-07-14 04:39:20 +0300 |
---|---|---|
committer | AndreyL ProductEngine <andreylproductengine@lindenlab.com> | 2015-07-14 04:39:20 +0300 |
commit | 078612e292fa8b66a8b7a68b7e1fe9b5049c3deb (patch) | |
tree | 8ba7d65f7b5a6519688b88eeac34f3e4ea6ef2dd /indra/llui/llurlentry.h | |
parent | ca6a9d16354a55cc40f2ab22d7b8d13c66bfac08 (diff) |
MAINT-5019 FIXED Additional cases
Diffstat (limited to 'indra/llui/llurlentry.h')
-rwxr-xr-x | indra/llui/llurlentry.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/indra/llui/llurlentry.h b/indra/llui/llurlentry.h index dd1f257a3d..4d5e77c3bd 100755 --- a/indra/llui/llurlentry.h +++ b/indra/llui/llurlentry.h @@ -506,5 +506,16 @@ public: /*virtual*/ std::string getIcon(const std::string &url); }; +/// +/// LLUrlEntryEmail Describes a generic mailto: Urls +/// +class LLUrlEntryEmail : public LLUrlEntryBase +{ +public: + LLUrlEntryEmail(); + /*virtual*/ std::string getLabel(const std::string &url, const LLUrlLabelCallback &cb); + /*virtual*/ std::string getUrl(const std::string &string) const; +}; + #endif |