summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorDmitry Oleshko <doleshko@productengine.com>2009-11-13 15:56:47 +0200
committerDmitry Oleshko <doleshko@productengine.com>2009-11-13 15:56:47 +0200
commit8039b75ae8320a03a2a5339e5d0d1238de0335d2 (patch)
treedb36f8ab318a2403580da44aa13be563b5e5e536 /indra
parent0ec8d0aacf47913ab8fd30d8424fa7146f135d15 (diff)
fixed normal bug (EXT-1217) Non-interactive notifications in queue aren't dismissed when overflow toast is dismissed proactively
returned a call to the appropriate function "onOverflowToastHide" that was brocen by commit r2150 to SVN --HG-- branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llscreenchannel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llscreenchannel.cpp b/indra/newview/llscreenchannel.cpp
index ed606d5457..81eb133b07 100644
--- a/indra/newview/llscreenchannel.cpp
+++ b/indra/newview/llscreenchannel.cpp
@@ -455,7 +455,7 @@ void LLScreenChannel::createOverflowToast(S32 bottom, F32 timer)
if(!mOverflowToastPanel)
return;
- mOverflowToastPanel->setOnFadeCallback(boost::bind(&LLScreenChannel::closeOverflowToastPanel, this));
+ mOverflowToastPanel->setOnFadeCallback(boost::bind(&LLScreenChannel::onOverflowToastHide, this));
LLTextBox* text_box = mOverflowToastPanel->getChild<LLTextBox>("toast_text");
std::string text = llformat(mOverflowFormatString.c_str(),mHiddenToastsNum);