Skip to content
Snippets Groups Projects
Commit 2e311386 authored by Merov Linden's avatar Merov Linden
Browse files

CHUI-672 : Fixed : LLMultiFloater members need to be initialized in constructor.

parent 45e72bf3
No related branches found
No related tags found
No related merge requests found
...@@ -37,10 +37,12 @@ ...@@ -37,10 +37,12 @@
// //
LLMultiFloater::LLMultiFloater(const LLSD& key, const LLFloater::Params& params) LLMultiFloater::LLMultiFloater(const LLSD& key, const LLFloater::Params& params)
: LLFloater(key) : LLFloater(key),
, mTabContainer(NULL) mTabContainer(NULL),
, mTabPos(LLTabContainer::TOP) mTabPos(LLTabContainer::TOP),
, mAutoResize(TRUE) mAutoResize(TRUE),
mOrigMinWidth(params.min_width),
mOrigMinHeight(params.min_height)
{ {
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment