diff options
| author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2025-03-13 16:39:12 +0200 | 
|---|---|---|
| committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2025-03-13 16:39:12 +0200 | 
| commit | d6fb10de86957a2ff41f3e5262fb0314c8bdf1db (patch) | |
| tree | e46cf2056b6c6832055864ab5d135eef5169a89e /indra/newview | |
| parent | bb5e05e98608c42b91fd3aca6f035e43d752ce52 (diff) | |
#3685 clean up
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llappearancemgr.cpp | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 58fb5b71af..101aca3823 100644 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -4722,9 +4722,7 @@ void wear_multiple(const uuid_vec_t& ids, bool replace)      LLAppearanceMgr::instance().wearItemsOnAvatar(ids, true, replace, cb);  } -// SLapp for easy-wearing of a stock (library) avatar -// -bool wear_library_category(const LLSD& query_map, bool append) +bool wear_category(const LLSD& query_map, bool append)  {      LLUUID folder_uuid; @@ -4775,7 +4773,7 @@ public:                  const std::string& grid,                  LLMediaCtrl* web)      { -        if (wear_library_category(query_map, false)) +        if (wear_category(query_map, false))          {              // Assume this is coming from the predefined avatars web floater              LLUIUsage::instance().logCommand("Avatar.WearPredefinedAppearance"); @@ -4799,7 +4797,7 @@ public:      bool handle(const LLSD& tokens, const LLSD& query_map, const std::string& grid, LLMediaCtrl* web)      { -        wear_library_category(query_map, true); +        wear_category(query_map, true);          return true;      } | 
