diff options
author | simon <none@none> | 2015-06-09 17:01:50 -0700 |
---|---|---|
committer | simon <none@none> | 2015-06-09 17:01:50 -0700 |
commit | 3720ed06139d01acafd481ef12e00e6e55737b56 (patch) | |
tree | 82c74e662e620cf185b6ea1dd530d58be851659e /indra/newview/llinspecttoast.cpp | |
parent | ee4289ade5ea84f978cc71efcf1b3275650eb624 (diff) | |
parent | 5fd8a51f149ba5f05af1e10585c3aee457dc0193 (diff) |
Merge downstream code
Diffstat (limited to 'indra/newview/llinspecttoast.cpp')
-rwxr-xr-x | indra/newview/llinspecttoast.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/indra/newview/llinspecttoast.cpp b/indra/newview/llinspecttoast.cpp index d04378daaf..47560341e7 100755 --- a/indra/newview/llinspecttoast.cpp +++ b/indra/newview/llinspecttoast.cpp @@ -47,6 +47,7 @@ public: /*virtual*/ void onOpen(const LLSD& notification_id); /*virtual*/ BOOL handleToolTip(S32 x, S32 y, MASK mask); + /*virtual*/ void removeChild(LLView* child); private: void onToastDestroy(LLToast * toast); @@ -98,7 +99,7 @@ void LLInspectToast::onOpen(const LLSD& notification_id) panel->setMouseOpaque(FALSE); if(mPanel != NULL && mPanel->getParent() == this) { - removeChild(mPanel); + LLInspect::removeChild(mPanel); } addChild(panel); panel->setFocus(TRUE); @@ -121,6 +122,16 @@ BOOL LLInspectToast::handleToolTip(S32 x, S32 y, MASK mask) return LLFloater::handleToolTip(x, y, mask); } +// virtual +void LLInspectToast::removeChild(LLView* child) +{ + if (mPanel == child) + { + mPanel = NULL; + } + LLInspect::removeChild(child); +} + void LLInspectToast::onToastDestroy(LLToast * toast) { closeFloater(false); |