summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelblockedlist.h
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-07-25 15:51:34 +0300
committerGitHub <noreply@github.com>2024-07-25 15:51:34 +0300
commit6e7c6a3842c077b97b3d9fb04c818613efa06f6f (patch)
treec91d4184295feb92de63946b0f064074da53071e /indra/newview/llpanelblockedlist.h
parentca70244339291b2a06aab55e865339c534433372 (diff)
parent7bb62fff08942db95805de454b43d006ca47428b (diff)
Merge pull request #2099 from RyeMutt/fix-findchild-stutter
Fix various sources of stutter from findChild during draw
Diffstat (limited to 'indra/newview/llpanelblockedlist.h')
-rw-r--r--indra/newview/llpanelblockedlist.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llpanelblockedlist.h b/indra/newview/llpanelblockedlist.h
index 446f3d4bad..1f470199ce 100644
--- a/indra/newview/llpanelblockedlist.h
+++ b/indra/newview/llpanelblockedlist.h
@@ -33,6 +33,8 @@
class LLAvatarName;
class LLBlockList;
+class LLMenuButton;
+class LLButton;
class LLPanelBlockedList : public LLPanel
{
@@ -78,7 +80,10 @@ private:
static void callbackBlockByName(const std::string& text);
private:
- LLBlockList* mBlockedList;
+ LLBlockList* mBlockedList = nullptr;
+ LLUICtrl* mBlockLimitText = nullptr;
+ LLMenuButton* mBlockedGearBtn = nullptr;
+ LLButton* mUnblockBtn = nullptr;
LLHandle<LLFloater> mPicker;
};