diff options
author | Stinson Linden <stinson@lindenlab.com> | 2014-05-12 23:43:36 +0100 |
---|---|---|
committer | Stinson Linden <stinson@lindenlab.com> | 2014-05-12 23:43:36 +0100 |
commit | b34cdbaa697f99673588d6b2f49fd917fed3ee09 (patch) | |
tree | 797994aecb5e2f44d969d84fd726ffd0cd4bd1a7 | |
parent | 35fe7aaedd5657898e152676f7744c14f7afa937 (diff) |
MAINT-4009: Patching a minor leak for when the status text box for the folder view has not been reparented.
-rwxr-xr-x | indra/llui/llfolderview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llfolderview.cpp b/indra/llui/llfolderview.cpp index 2ec7ed861f..602bd1a23a 100755 --- a/indra/llui/llfolderview.cpp +++ b/indra/llui/llfolderview.cpp @@ -227,7 +227,7 @@ LLFolderView::LLFolderView(const Params& p) mStatusTextBox = LLUICtrlFactory::create<LLTextBox> (text_p); mStatusTextBox->setFollowsLeft(); mStatusTextBox->setFollowsTop(); - //addChild(mStatusTextBox); + addChild(mStatusTextBox); // make the popup menu available |