aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llfloatergroupinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-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