diff options
| author | Dessie Linden <dessie@lindenlab.com> | 2010-06-28 08:51:26 -0700 |
|---|---|---|
| committer | Dessie Linden <dessie@lindenlab.com> | 2010-06-28 08:51:26 -0700 |
| commit | 6ffe7db72018c8a0a89c209627f6b37f21f88e37 (patch) | |
| tree | cfd70990ca17d47f335905355e1709140e9e2d8a /indra/newview/llinspecttoast.cpp | |
| parent | 81f5c0241436f3b3fb097dd38c108d110540de7a (diff) | |
| parent | 8d18056e8296472d58a820fd77a6a66100e70661 (diff) | |
Merged from viewer-release
Diffstat (limited to 'indra/newview/llinspecttoast.cpp')
| -rw-r--r-- | indra/newview/llinspecttoast.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llinspecttoast.cpp b/indra/newview/llinspecttoast.cpp index 3ca8fa2f56..9a10a7ede8 100644 --- a/indra/newview/llinspecttoast.cpp +++ b/indra/newview/llinspecttoast.cpp @@ -55,7 +55,7 @@ public: private: void onToastDestroy(LLToast * toast); -private: + boost::signals2::scoped_connection mConnection; LLPanel* mPanel; LLScreenChannel* mScreenChannel; }; @@ -88,7 +88,7 @@ void LLInspectToast::onOpen(const LLSD& notification_id) llwarns << "Could not get requested toast from screen channel." << llendl; return; } - toast->setOnToastDestroyedCallback(boost::bind(&LLInspectToast::onToastDestroy, this, _1)); + mConnection = toast->setOnToastDestroyedCallback(boost::bind(&LLInspectToast::onToastDestroy, this, _1)); LLPanel * panel = toast->getPanel(); panel->setVisible(TRUE); |
