diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-05-31 22:41:21 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-05-31 23:31:14 +0300 |
commit | ab3d986ac82e6c54804e8216d8ba2f72f8e8dfc8 (patch) | |
tree | 7ed2b8b58e459cf4455c1cf356fab8a41a2a29b2 /indra/newview/llpanelprofile.h | |
parent | 4ffc6c3fde17de5e18370139274bbd44b1b61a23 (diff) |
SL-15312 Tweaks and fixes #2
- changed 'is friend' color
- fixed off/online status vanishing
- changed user name format
- fixed rights behavior
- cleaned up some unused code
- readded click functionality to permission icons (might need to return buttons instead)
Diffstat (limited to 'indra/newview/llpanelprofile.h')
-rw-r--r-- | indra/newview/llpanelprofile.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/newview/llpanelprofile.h b/indra/newview/llpanelprofile.h index 2f2437ed0a..4985ec0015 100644 --- a/indra/newview/llpanelprofile.h +++ b/indra/newview/llpanelprofile.h @@ -136,8 +136,16 @@ protected: */ void fillAccountStatus(const LLAvatarData* avatar_data); + /** + * Sets permissions specific icon + */ void fillRightsData(); + /** + * Fills user name, display name, age. + */ + void fillNameAgeData(const LLAvatarName &av_name, const LLDate &born_on); + void onImageLoaded(BOOL success, LLViewerFetchedTexture *imagep); static void onImageLoaded(BOOL success, LLViewerFetchedTexture *src_vi, @@ -204,6 +212,7 @@ private: bool mWaitingForImageUpload; bool mAllowPublish; std::string mDescriptionText; + LLDate mBornOn; boost::signals2::connection mAvatarNameCacheConnection; }; |