aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpanelgrouproles.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpanelgrouproles.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/linden/indra/newview/llpanelgrouproles.cpp b/linden/indra/newview/llpanelgrouproles.cpp
index 5765a12..e6944d9 100644
--- a/linden/indra/newview/llpanelgrouproles.cpp
+++ b/linden/indra/newview/llpanelgrouproles.cpp
@@ -172,13 +172,13 @@ BOOL LLPanelGroupRoles::postBuild()
172 if (txt) 172 if (txt)
173 { 173 {
174 mDefaultNeedsApplyMesg = txt->getText(); 174 mDefaultNeedsApplyMesg = txt->getText();
175 removeChild(txt); 175 removeChild(txt, TRUE);
176 } 176 }
177 txt = (LLTextBox*)getChildByName("want_apply_text"); 177 txt = (LLTextBox*)getChildByName("want_apply_text");
178 if (txt) 178 if (txt)
179 { 179 {
180 mWantApplyMesg = txt->getText(); 180 mWantApplyMesg = txt->getText();
181 removeChild(txt); 181 removeChild(txt, TRUE);
182 } 182 }
183 183
184 return LLPanelGroupTab::postBuild(); 184 return LLPanelGroupTab::postBuild();
@@ -541,21 +541,21 @@ BOOL LLPanelGroupSubTab::postBuild()
541 if (icon && icon->getImage().notNull()) 541 if (icon && icon->getImage().notNull())
542 { 542 {
543 mActionIcons["folder"] = icon->getImage(); 543 mActionIcons["folder"] = icon->getImage();
544 removeChild(icon); 544 removeChild(icon, TRUE);
545 } 545 }
546 546
547 icon = (LLIconCtrl*) getChildByName("power_all_have_icon",no_recurse); 547 icon = (LLIconCtrl*) getChildByName("power_all_have_icon",no_recurse);
548 if (icon && icon->getImage().notNull()) 548 if (icon && icon->getImage().notNull())
549 { 549 {
550 mActionIcons["full"] = icon->getImage(); 550 mActionIcons["full"] = icon->getImage();
551 removeChild(icon); 551 removeChild(icon, TRUE);
552 } 552 }
553 553
554 icon = (LLIconCtrl*) getChildByName("power_partial_icon",no_recurse); 554 icon = (LLIconCtrl*) getChildByName("power_partial_icon",no_recurse);
555 if (icon && icon->getImage().notNull()) 555 if (icon && icon->getImage().notNull())
556 { 556 {
557 mActionIcons["partial"] = icon->getImage(); 557 mActionIcons["partial"] = icon->getImage();
558 removeChild(icon); 558 removeChild(icon, TRUE);
559 } 559 }
560 560
561 return LLPanelGroupTab::postBuild(); 561 return LLPanelGroupTab::postBuild();
@@ -1825,7 +1825,7 @@ BOOL LLPanelGroupRolesSubTab::postBuildSubTab(LLView* root)
1825 if (txt) 1825 if (txt)
1826 { 1826 {
1827 mRemoveEveryoneTxt = txt->getText(); 1827 mRemoveEveryoneTxt = txt->getText();
1828 parent->removeChild(txt); 1828 parent->removeChild(txt, TRUE);
1829 } 1829 }
1830 1830
1831 mCreateRoleButton = 1831 mCreateRoleButton =