Skip to content
Snippets Groups Projects
Commit d5b0f0b3 authored by Cinder's avatar Cinder
Browse files

Fix chat triggers

parent 38713b78
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
// legacy callback glue // legacy callback glue
extern void send_chat_from_viewer(const std::string& utf8_out_text, EChatType type, S32 channel); extern void send_chat_from_viewer(const std::string& utf8_out_text, EChatType type, S32 channel);
/* static */ std::unordered_map<std::string, EChatType> sChatTypeTriggers = { const std::map<std::string, EChatType> sChatTypeTriggers = {
{LLStringExplicit("/whisper"), CHAT_TYPE_WHISPER}, {LLStringExplicit("/whisper"), CHAT_TYPE_WHISPER},
{LLStringExplicit("/shout"), CHAT_TYPE_SHOUT} {LLStringExplicit("/shout"), CHAT_TYPE_SHOUT}
}; };
...@@ -115,7 +115,7 @@ EChatType LLChatUtilities::processChatTypeTriggers(EChatType type, std::string & ...@@ -115,7 +115,7 @@ EChatType LLChatUtilities::processChatTypeTriggers(EChatType type, std::string &
if (!LLStringUtil::compareInsensitive(trigger, ti.first)) if (!LLStringUtil::compareInsensitive(trigger, ti.first))
{ {
U32 trigger_length = ti.first.length(); size_t trigger_length = ti.first.length();
// It's to remove space after trigger name // It's to remove space after trigger name
if (length > trigger_length && str[trigger_length] == ' ') if (length > trigger_length && str[trigger_length] == ' ')
......
...@@ -27,12 +27,9 @@ ...@@ -27,12 +27,9 @@
#define LL_CHATUTILITIES_H #define LL_CHATUTILITIES_H
#include "llchat.h" #include "llchat.h"
#include <unordered_map>
namespace LLChatUtilities namespace LLChatUtilities
{ {
static std::unordered_map<std::string, EChatType> sChatTypeTriggers;
// Send a chat (after stripping /20foo channel chats). // Send a chat (after stripping /20foo channel chats).
// "Animate" means the nodding animation for regular text. // "Animate" means the nodding animation for regular text.
void sendChatFromViewer(const LLWString &wtext, EChatType type, BOOL animate); void sendChatFromViewer(const LLWString &wtext, EChatType type, BOOL animate);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment