diff options
Diffstat (limited to 'linden/indra/newview/llpanelgroupgeneral.cpp')
-rw-r--r-- | linden/indra/newview/llpanelgroupgeneral.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llpanelgroupgeneral.cpp b/linden/indra/newview/llpanelgroupgeneral.cpp index 5ec9651..0888cad 100644 --- a/linden/indra/newview/llpanelgroupgeneral.cpp +++ b/linden/indra/newview/llpanelgroupgeneral.cpp | |||
@@ -135,7 +135,7 @@ BOOL LLPanelGroupGeneral::postBuild() | |||
135 | if (founder) | 135 | if (founder) |
136 | { | 136 | { |
137 | mFounderName = new LLNameBox(founder->getName(),founder->getRect(),LLUUID::null,FALSE,founder->getFont(),founder->getMouseOpaque()); | 137 | mFounderName = new LLNameBox(founder->getName(),founder->getRect(),LLUUID::null,FALSE,founder->getFont(),founder->getMouseOpaque()); |
138 | removeChild(founder); | 138 | removeChild(founder, TRUE); |
139 | addChild(mFounderName); | 139 | addChild(mFounderName); |
140 | } | 140 | } |
141 | 141 | ||
@@ -221,14 +221,14 @@ BOOL LLPanelGroupGeneral::postBuild() | |||
221 | if (txt) | 221 | if (txt) |
222 | { | 222 | { |
223 | mIncompleteMemberDataStr = txt->getText(); | 223 | mIncompleteMemberDataStr = txt->getText(); |
224 | removeChild(txt); | 224 | removeChild(txt, TRUE); |
225 | } | 225 | } |
226 | 226 | ||
227 | txt = (LLTextBox*)getChildByName("confirm_group_create_str"); | 227 | txt = (LLTextBox*)getChildByName("confirm_group_create_str"); |
228 | if (txt) | 228 | if (txt) |
229 | { | 229 | { |
230 | mConfirmGroupCreateStr = txt->getText(); | 230 | mConfirmGroupCreateStr = txt->getText(); |
231 | removeChild(txt); | 231 | removeChild(txt, TRUE); |
232 | } | 232 | } |
233 | 233 | ||
234 | // If the group_id is null, then we are creating a new group | 234 | // If the group_id is null, then we are creating a new group |