aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llchat.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llchat.h')
-rw-r--r--linden/indra/llcommon/llchat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llcommon/llchat.h b/linden/indra/llcommon/llchat.h
index a46b8aa..ea1a579 100644
--- a/linden/indra/llcommon/llchat.h
+++ b/linden/indra/llcommon/llchat.h
@@ -68,7 +68,7 @@ typedef enum e_chat_audible_level
68class LLChat 68class LLChat
69{ 69{
70public: 70public:
71 LLChat(const LLString& text = LLString::null) 71 LLChat(const std::string& text = LLStringUtil::null)
72 : mText(text), 72 : mText(text),
73 mFromName(), 73 mFromName(),
74 mFromID(), 74 mFromID(),
@@ -80,8 +80,8 @@ public:
80 mPosAgent() 80 mPosAgent()
81 { } 81 { }
82 82
83 LLString mText; // UTF-8 line of text 83 std::string mText; // UTF-8 line of text
84 LLString mFromName; // agent or object name 84 std::string mFromName; // agent or object name
85 LLUUID mFromID; // agent id or object id 85 LLUUID mFromID; // agent id or object id
86 EChatSourceType mSourceType; 86 EChatSourceType mSourceType;
87 EChatType mChatType; 87 EChatType mChatType;