diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-05-24 11:09:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-24 11:09:16 -0400 |
commit | 30da8853c88e755ac5c0836f3952d16d501d3502 (patch) | |
tree | 2e730bce8741bc8130e0f822d4d15394c41c9d84 /indra/llui | |
parent | 66a8b0ebb7fc1e6acdb0028f7ca8547153e10062 (diff) | |
parent | 94cac4c443b5acc189b5223c78eb278648846338 (diff) |
Merge pull request #1565 from secondlife/lua-chatplus
Nat's ideas from PR #1547
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llchat.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llchat.h b/indra/llui/llchat.h index 343b81ba8d..70d7e82970 100644 --- a/indra/llui/llchat.h +++ b/indra/llui/llchat.h @@ -113,7 +113,8 @@ public: }; static const std::string LUA_PREFIX("[LUA]"); -inline std::string remove_LUA_PREFIX(const std::string &string, bool is_lua) +inline +std::string without_LUA_PREFIX(const std::string& string, bool is_lua) { if (is_lua) { |