summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorMerov Linden <merov@lindenlab.com>2013-01-10 20:19:26 -0800
committerMerov Linden <merov@lindenlab.com>2013-01-10 20:19:26 -0800
commit2e3113863022a21d2145cc23992d6afab9c6fbcd (patch)
tree3da2ba8c4a6617e9aa5e1a972ec06130306e7176 /indra/llui
parent45e72bf3cbd08eef96663d569cec3ecae198a8e4 (diff)
CHUI-672 : Fixed : LLMultiFloater members need to be initialized in constructor.
Diffstat (limited to 'indra/llui')
-rw-r--r--indra/llui/llmultifloater.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/indra/llui/llmultifloater.cpp b/indra/llui/llmultifloater.cpp
index 59faabd482..179b251cdb 100644
--- a/indra/llui/llmultifloater.cpp
+++ b/indra/llui/llmultifloater.cpp
@@ -37,10 +37,12 @@
//
LLMultiFloater::LLMultiFloater(const LLSD& key, const LLFloater::Params& params)
- : LLFloater(key)
- , mTabContainer(NULL)
- , mTabPos(LLTabContainer::TOP)
- , mAutoResize(TRUE)
+ : LLFloater(key),
+ mTabContainer(NULL),
+ mTabPos(LLTabContainer::TOP),
+ mAutoResize(TRUE),
+ mOrigMinWidth(params.min_width),
+ mOrigMinHeight(params.min_height)
{
}