diff options
author | Jacek Antonelli | 2008-08-15 23:45:55 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:55 -0500 |
commit | 9063e60aefe54f7c45aaa8cb24e8998b2c7343ab (patch) | |
tree | 1c8235465701c910a5d76448ddc8eb1f14457ebc /linden/indra/newview/llgroupnotify.cpp | |
parent | Second Life viewer sources 1.20.9 (diff) | |
download | meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.zip meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.gz meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.bz2 meta-impy-9063e60aefe54f7c45aaa8cb24e8998b2c7343ab.tar.xz |
Second Life viewer sources 1.20.10
Diffstat (limited to 'linden/indra/newview/llgroupnotify.cpp')
-rw-r--r-- | linden/indra/newview/llgroupnotify.cpp | 15 |
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 | ||