aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llgroupnotify.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llgroupnotify.cpp')
-rw-r--r--linden/indra/newview/llgroupnotify.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/linden/indra/newview/llgroupnotify.cpp b/linden/indra/newview/llgroupnotify.cpp
index bef8eb5..b8d38e4 100644
--- a/linden/indra/newview/llgroupnotify.cpp
+++ b/linden/indra/newview/llgroupnotify.cpp
@@ -415,14 +415,15 @@ void LLGroupNotifyBox::moveToBack()
415 { 415 {
416 LLView* view = gNotifyBoxView->getFirstChild(); 416 LLView* view = gNotifyBoxView->getFirstChild();
417 417
418 llassert_always(view) ; 418 if(view && "groupnotify" == view->getName())
419 llassert_always(view->getName() == "groupnotify"); 419 {
420 420 LLGroupNotifyBox* front = (LLGroupNotifyBox*)view;
421 LLGroupNotifyBox* front = (LLGroupNotifyBox*)view;
422 421
423 llassert_always(front->mNextBtn) ; 422 if(front->mNextBtn)
424 423 {
425 front->mNextBtn->setVisible(TRUE); 424 front->mNextBtn->setVisible(TRUE);
425 }
426 }
426 } 427 }
427} 428}
428 429