diff options
author | James Cook <james@lindenlab.com> | 2010-05-11 17:26:29 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2010-05-11 17:26:29 -0700 |
commit | 31a0d236d59de5eaaa9e33ed99e6971c1ee01ad7 (patch) | |
tree | 9ffd3705becc2a5f2d21367b184173fd21e25857 /indra/llui/llurlentry.cpp | |
parent | 2b7153c26a6dd5284218253910f466a0faeff708 (diff) |
Clean up merge-fight about getIcon() const-ness
Diffstat (limited to 'indra/llui/llurlentry.cpp')
-rw-r--r-- | indra/llui/llurlentry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llurlentry.cpp b/indra/llui/llurlentry.cpp index f3e1a07fbc..f9e5bd76d0 100644 --- a/indra/llui/llurlentry.cpp +++ b/indra/llui/llurlentry.cpp @@ -62,7 +62,7 @@ std::string LLUrlEntryBase::getUrl(const std::string &string) const } //virtual -std::string LLUrlEntryBase::getIcon(const std::string &url) const +std::string LLUrlEntryBase::getIcon(const std::string &url) { return mIcon; } @@ -464,7 +464,7 @@ std::string localize_slapp_label(const std::string& url, const std::string& full } -std::string LLUrlEntryAgent::getIcon(const std::string &url) const +std::string LLUrlEntryAgent::getIcon(const std::string &url) { // *NOTE: Could look up a badge here by calling getIDStringFromUrl() // and looking up the badge for the agent. |