diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llpanelgroupnotices.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linden/indra/newview/llpanelgroupnotices.cpp b/linden/indra/newview/llpanelgroupnotices.cpp index e335929..c7c7912 100644 --- a/linden/indra/newview/llpanelgroupnotices.cpp +++ b/linden/indra/newview/llpanelgroupnotices.cpp | |||
@@ -2,6 +2,8 @@ | |||
2 | * @file llpanelgroupnotices.cpp | 2 | * @file llpanelgroupnotices.cpp |
3 | * @brief A panel to display group notices. | 3 | * @brief A panel to display group notices. |
4 | * | 4 | * |
5 | * $LicenseInfo:firstyear=2006&license=viewergpl$ | ||
6 | * | ||
5 | * Copyright (c) 2006-2007, Linden Research, Inc. | 7 | * Copyright (c) 2006-2007, Linden Research, Inc. |
6 | * | 8 | * |
7 | * Second Life Viewer Source Code | 9 | * Second Life Viewer Source Code |
@@ -24,6 +26,7 @@ | |||
24 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | 26 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO |
25 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | 27 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, |
26 | * COMPLETENESS OR PERFORMANCE. | 28 | * COMPLETENESS OR PERFORMANCE. |
29 | * $/LicenseInfo$ | ||
27 | */ | 30 | */ |
28 | 31 | ||
29 | #include "llviewerprecompiledheaders.h" | 32 | #include "llviewerprecompiledheaders.h" |
@@ -542,8 +545,8 @@ void LLPanelGroupNotices::showNotice(const char* subject, | |||
542 | { | 545 | { |
543 | arrangeNoticeView(VIEW_PAST_NOTICE); | 546 | arrangeNoticeView(VIEW_PAST_NOTICE); |
544 | 547 | ||
545 | if(mViewSubject) mViewSubject->setText(subject); | 548 | if(mViewSubject) mViewSubject->setText(LLString(subject)); |
546 | if(mViewMessage) mViewMessage->setText(message); | 549 | if(mViewMessage) mViewMessage->setText(LLString(message)); |
547 | 550 | ||
548 | if (mInventoryOffer) | 551 | if (mInventoryOffer) |
549 | { | 552 | { |