summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerchat.cpp
diff options
context:
space:
mode:
authornat-goodspeed <nat@lindenlab.com>2024-05-24 11:09:16 -0400
committerGitHub <noreply@github.com>2024-05-24 11:09:16 -0400
commit30da8853c88e755ac5c0836f3952d16d501d3502 (patch)
tree2e730bce8741bc8130e0f822d4d15394c41c9d84 /indra/newview/llviewerchat.cpp
parent66a8b0ebb7fc1e6acdb0028f7ca8547153e10062 (diff)
parent94cac4c443b5acc189b5223c78eb278648846338 (diff)
Merge pull request #1565 from secondlife/lua-chatplus
Nat's ideas from PR #1547
Diffstat (limited to 'indra/newview/llviewerchat.cpp')
-rw-r--r--indra/newview/llviewerchat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewerchat.cpp b/indra/newview/llviewerchat.cpp
index ce29ceac1a..00520f100e 100644
--- a/indra/newview/llviewerchat.cpp
+++ b/indra/newview/llviewerchat.cpp
@@ -217,7 +217,7 @@ S32 LLViewerChat::getChatFontSize()
//static
void LLViewerChat::formatChatMsg(const LLChat& chat, std::string& formated_msg)
{
- std::string tmpmsg = remove_LUA_PREFIX(chat.mText, chat.mIsScript);
+ std::string tmpmsg = without_LUA_PREFIX(chat.mText, chat.mIsScript);
if(chat.mChatStyle == CHAT_STYLE_IRC)
{
formated_msg = chat.mFromName + tmpmsg.substr(3);