diff options
author | simon <none@none> | 2014-02-21 11:10:16 -0800 |
---|---|---|
committer | simon <none@none> | 2014-02-21 11:10:16 -0800 |
commit | 76913530ed04798536e8469dbeaea9e512d122aa (patch) | |
tree | c2468b88c2371f4e9b4e14df441fa45a7e9fb03e /indra/llui/lllayoutstack.cpp | |
parent | 5ce3207a6ffcbc1cb24b54fd42860696ab63147b (diff) | |
parent | 7028d24c2c482be215c5d794d3e9b06c2d9f963a (diff) |
Merge downstream code
Diffstat (limited to 'indra/llui/lllayoutstack.cpp')
-rwxr-xr-x | indra/llui/lllayoutstack.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/llui/lllayoutstack.cpp b/indra/llui/lllayoutstack.cpp index c89c0203b4..953025abbf 100755 --- a/indra/llui/lllayoutstack.cpp +++ b/indra/llui/lllayoutstack.cpp @@ -245,9 +245,18 @@ LLLayoutStack::LLLayoutStack(const LLLayoutStack::Params& p) LLLayoutStack::~LLLayoutStack() { + LL_INFOS("Baker") << "[3555] ~LLLayoutStack() -------------------------------------------------" << LL_ENDL; + + LL_INFOS("Baker") << "[3555] ~LLLayoutStack() - Copying panel pointers." << LL_ENDL; e_panel_list_t panels = mPanels; // copy list of panel pointers + + LL_INFOS("Baker") << "[3555] ~LLLayoutStack() - Clearing mPanels." << LL_ENDL; mPanels.clear(); // clear so that removeChild() calls don't cause trouble + + LL_INFOS("Baker") << "[3555] ~LLLayoutStack() - Deleing copied panel pointers." << LL_ENDL; std::for_each(panels.begin(), panels.end(), DeletePointer()); + + LL_INFOS("Baker") << "[3555] Exiting ~LLLayoutStack()" << LL_ENDL; } void LLLayoutStack::draw() |