SL-3007 mac build fix
parent
3e1a4ac548
commit
1f542bf542
|
|
@ -406,7 +406,8 @@ public:
|
|||
}
|
||||
else if (level == "report_abuse")
|
||||
{
|
||||
LLFloaterReporter::showFromChat(mAvatarID, mFrom, getChild<LLTextBox>("time_box")->getValue().asString(), mText);
|
||||
std::string time = getChild<LLTextBox>("time_box")->getValue().asString();
|
||||
LLFloaterReporter::showFromChat(mAvatarID, mFrom, time, mText);
|
||||
}
|
||||
else if(level == "block_unblock")
|
||||
{
|
||||
|
|
|
|||
|
|
@ -660,7 +660,7 @@ void LLFloaterReporter::showFromAvatar(const LLUUID& avatar_id, const std::strin
|
|||
}
|
||||
|
||||
// static
|
||||
void LLFloaterReporter::showFromChat(const LLUUID& avatar_id, const std::string& avatar_name, std::string& time, std::string& description)
|
||||
void LLFloaterReporter::showFromChat(const LLUUID& avatar_id, const std::string& avatar_name, const std::string& time, const std::string& description)
|
||||
{
|
||||
show(avatar_id, avatar_name);
|
||||
setDescription(time + "\n" + description);
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ public:
|
|||
|
||||
static void showFromObject(const LLUUID& object_id, const LLUUID& experience_id = LLUUID::null);
|
||||
static void showFromAvatar(const LLUUID& avatar_id, const std::string avatar_name);
|
||||
static void showFromChat(const LLUUID& avatar_id, const std::string& avatar_name, std::string& time, std::string& description);
|
||||
static void showFromChat(const LLUUID& avatar_id, const std::string& avatar_name, const std::string& time, const std::string& description);
|
||||
static void showFromExperience(const LLUUID& experience_id);
|
||||
|
||||
static void onClickSend (void *userdata);
|
||||
|
|
|
|||
Loading…
Reference in New Issue