diff options
author | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
commit | 089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch) | |
tree | 0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/newview/llpanelgroupgeneral.cpp | |
parent | Second Life viewer sources 1.16.0.5 (diff) | |
download | meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2 meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz |
Second Life viewer sources 1.17.0.12
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 |