aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloatergroupinfo.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-09-06 18:24:57 -0500
committerJacek Antonelli2008-09-06 18:25:07 -0500
commit798d367d54a6c6379ad355bd8345fa40e31e7fe9 (patch)
tree1921f1708cd0240648c97bc02df2c2ab5f2fc41e /linden/indra/newview/llfloatergroupinfo.cpp
parentSecond Life viewer sources 1.20.15 (diff)
downloadmeta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.zip
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.gz
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.bz2
meta-impy-798d367d54a6c6379ad355bd8345fa40e31e7fe9.tar.xz
Second Life viewer sources 1.21.0-RC
Diffstat (limited to 'linden/indra/newview/llfloatergroupinfo.cpp')
-rw-r--r--linden/indra/newview/llfloatergroupinfo.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/linden/indra/newview/llfloatergroupinfo.cpp b/linden/indra/newview/llfloatergroupinfo.cpp
index c657988..a095a64 100644
--- a/linden/indra/newview/llfloatergroupinfo.cpp
+++ b/linden/indra/newview/llfloatergroupinfo.cpp
@@ -185,7 +185,7 @@ void LLFloaterGroupInfo::refreshGroup(const LLUUID& group_id)
185} 185}
186 186
187// static 187// static
188void LLFloaterGroupInfo::callbackLoadGroupName(const LLUUID& id, const char* first, const char* last, BOOL is_group, void* data) 188void LLFloaterGroupInfo::callbackLoadGroupName(const LLUUID& id, const std::string& first, const std::string& last, BOOL is_group, void* data)
189{ 189{
190 LLFloaterGroupInfo *fgi = get_if_there(sInstances, id, (LLFloaterGroupInfo*)NULL); 190 LLFloaterGroupInfo *fgi = get_if_there(sInstances, id, (LLFloaterGroupInfo*)NULL);
191 191
@@ -230,12 +230,12 @@ void LLFloaterGroupInfo::showFromUUID(const LLUUID& group_id,
230} 230}
231 231
232// static 232// static
233void LLFloaterGroupInfo::showNotice(const char* subject, 233void LLFloaterGroupInfo::showNotice(const std::string& subject,
234 const char* message, 234 const std::string& message,
235 const LLUUID& group_id, 235 const LLUUID& group_id,
236 const bool& has_inventory, 236 const bool& has_inventory,
237 const char* inventory_name, 237 const std::string& inventory_name,
238 LLOfferInfo* inventory_offer) 238 LLOfferInfo* inventory_offer)
239{ 239{
240 llinfos << "LLFloaterGroupInfo::showNotice : " << subject << llendl; 240 llinfos << "LLFloaterGroupInfo::showNotice : " << subject << llendl;
241 241