diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-01-25 23:30:20 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2022-01-25 23:30:20 +0200 |
commit | 1f542bf5427787577a564cd716b005c19500d54a (patch) | |
tree | d0db220565b45405d5c029e32e6135ac67a40a65 /indra/newview/llchathistory.cpp | |
parent | 3e1a4ac54888a0082f0276ad62f5b2133baa2b2f (diff) |
SL-3007 mac build fix
Diffstat (limited to 'indra/newview/llchathistory.cpp')
-rw-r--r-- | indra/newview/llchathistory.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llchathistory.cpp b/indra/newview/llchathistory.cpp index dffd523b02..f286e4c075 100644 --- a/indra/newview/llchathistory.cpp +++ b/indra/newview/llchathistory.cpp @@ -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") { |