diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-10-14 00:11:06 +0200 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-10-14 02:31:07 +0200 |
commit | 70956fb2dbc42501d27a474e3f80003d591ee646 (patch) | |
tree | 30ec887589f894c68a81233ee99a518501497021 /indra/newview/llpanelavatar.h | |
parent | 96e459256410cd18f1506f7e0b2118955ea65b81 (diff) |
SL-20163 Allow residents to hide exact join date on profiles
Diffstat (limited to 'indra/newview/llpanelavatar.h')
-rw-r--r-- | indra/newview/llpanelavatar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llpanelavatar.h b/indra/newview/llpanelavatar.h index f182660c8e..572e1eb029 100644 --- a/indra/newview/llpanelavatar.h +++ b/indra/newview/llpanelavatar.h @@ -92,7 +92,7 @@ public: /** * Returns avatar ID. */ - virtual const LLUUID& getAvatarId() { return mAvatarId; } + virtual const LLUUID& getAvatarId() const { return mAvatarId; } /** * Sends update data request to server. @@ -133,6 +133,8 @@ protected: const bool getSelfProfile() const { return mSelfProfile; } + bool saveAgentUserInfoCoro(std::string name, LLSD value) const; + public: void setIsLoading() { mLoadingState = PROFILE_LOADING; } void resetLoading() { mLoadingState = PROFILE_INIT; } |