diff options
author | Richard Nelson <none@none> | 2010-05-26 13:14:47 -0700 |
---|---|---|
committer | Richard Nelson <none@none> | 2010-05-26 13:14:47 -0700 |
commit | 7435ff08b5f548d6e5c61129179c70d99177cc45 (patch) | |
tree | 2f6cf43a53080567f723730041a006024974665a /indra/llui/llurlentry.h | |
parent | 0ebdba45f6fbcecfe0aa63bb37ddcde2efba6d87 (diff) |
DEV-50271 FIX SLURL support for non-clickable display names
separate mIsLink from mLink to support non-clickable urls (e.g. secondlife:///app/agent/0e346d8b-4433-4d66-a6b0-fd37083abc4c/completename)
Diffstat (limited to 'indra/llui/llurlentry.h')
-rw-r--r-- | indra/llui/llurlentry.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/indra/llui/llurlentry.h b/indra/llui/llurlentry.h index ca4562cee0..5be3c6a45b 100644 --- a/indra/llui/llurlentry.h +++ b/indra/llui/llurlentry.h @@ -95,9 +95,6 @@ public: /// Return the name of a SL location described by this Url, if any virtual std::string getLocation(const std::string &url) const { return ""; } - /// is this a match for a URL that should not be hyperlinked? - bool isLinkDisabled() const { return mDisabledLink; } - protected: std::string getIDStringFromUrl(const std::string &url) const; std::string escapeUrl(const std::string &url) const; @@ -117,7 +114,6 @@ protected: std::string mMenuName; std::string mTooltip; std::multimap<std::string, LLUrlEntryObserver> mObservers; - bool mDisabledLink; }; /// |