diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llui/lluictrlfactory.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/llui/lluictrlfactory.cpp b/linden/indra/llui/lluictrlfactory.cpp index 70f1e3e..4b4c463 100644 --- a/linden/indra/llui/lluictrlfactory.cpp +++ b/linden/indra/llui/lluictrlfactory.cpp | |||
@@ -2,6 +2,8 @@ | |||
2 | * @file lluictrlfactory.cpp | 2 | * @file lluictrlfactory.cpp |
3 | * @brief Factory class for creating UI controls | 3 | * @brief Factory class for creating UI controls |
4 | * | 4 | * |
5 | * $LicenseInfo:firstyear=2003&license=viewergpl$ | ||
6 | * | ||
5 | * Copyright (c) 2003-2007, Linden Research, Inc. | 7 | * Copyright (c) 2003-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 "linden_common.h" | 32 | #include "linden_common.h" |
@@ -470,7 +473,7 @@ LLPieMenu *LLUICtrlFactory::buildPieMenu(const LLString &filename, LLView* paren | |||
470 | // root must be called panel | 473 | // root must be called panel |
471 | if( !root->hasName( LL_PIE_MENU_TAG )) | 474 | if( !root->hasName( LL_PIE_MENU_TAG )) |
472 | { | 475 | { |
473 | llwarns << "Root node should be named " LL_PIE_MENU_TAG " in : " << filename << llendl; | 476 | llwarns << "Root node should be named " << LL_PIE_MENU_TAG << " in : " << filename << llendl; |
474 | return NULL; | 477 | return NULL; |
475 | } | 478 | } |
476 | 479 | ||
@@ -805,3 +808,4 @@ void LLUICtrlFactory::registerCreator(LLString ctrlname, creator_function_t func | |||
805 | mCreatorFunctions[ctrlname] = function; | 808 | mCreatorFunctions[ctrlname] = function; |
806 | } | 809 | } |
807 | 810 | ||
811 | |||