diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-06-06 21:27:13 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-06-07 02:18:22 +0300 |
commit | 111d1d7c94887cb91bcb82ec6c86aaed133d8043 (patch) | |
tree | 58a8e319f0fcbc8d338eb54322a136b5b201530e /indra/newview/llpanelprofile.h | |
parent | 0c6afa58de6b57ad41d31a3dddaac9ef30321960 (diff) |
SL-15312 Fixed group names not having padding
Plus some focus and interactibility fixes
Diffstat (limited to 'indra/newview/llpanelprofile.h')
-rw-r--r-- | indra/newview/llpanelprofile.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llpanelprofile.h b/indra/newview/llpanelprofile.h index 4de5f274d8..943048843f 100644 --- a/indra/newview/llpanelprofile.h +++ b/indra/newview/llpanelprofile.h @@ -90,7 +90,7 @@ public: BOOL postBuild() override; - void resetData(); + void resetData() override; /** * Sends update data request to server. @@ -228,18 +228,18 @@ public: LLPanelProfileWeb(); /*virtual*/ ~LLPanelProfileWeb(); - /*virtual*/ void onOpen(const LLSD& key); + void onOpen(const LLSD& key) override; - /*virtual*/ BOOL postBuild(); + BOOL postBuild() override; - void resetData(); + void resetData() override; /** * Loads web profile. */ - /*virtual*/ void updateData(); + void updateData() override; - /*virtual*/ void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event); + void handleMediaEvent(LLPluginClassMedia* self, EMediaEvent event) override; void onAvatarNameCache(const LLUUID& agent_id, const LLAvatarName& av_name); @@ -275,7 +275,7 @@ public: void processProperties(const LLAvatarData* avatar_data); - void resetData(); + void resetData() override; void setProfileImageUploading(bool loading); void setProfileImageUploaded(const LLUUID &image_asset_id); @@ -324,7 +324,7 @@ public: void processProperties(LLAvatarNotes* avatar_notes); - void resetData(); + void resetData() override; void updateData() override; |