aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llchat.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llchat.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/linden/indra/llcommon/llchat.h b/linden/indra/llcommon/llchat.h
index aa4469c..6c75a25 100644
--- a/linden/indra/llcommon/llchat.h
+++ b/linden/indra/llcommon/llchat.h
@@ -81,9 +81,10 @@ public:
81 mAudible(CHAT_AUDIBLE_FULLY), 81 mAudible(CHAT_AUDIBLE_FULLY),
82 mMuted(FALSE), 82 mMuted(FALSE),
83 mTime(0.0), 83 mTime(0.0),
84 mPosAgent() 84 mPosAgent(),
85 mURL()
85 { } 86 { }
86 87
87 std::string mText; // UTF-8 line of text 88 std::string mText; // UTF-8 line of text
88 std::string mFromName; // agent or object name 89 std::string mFromName; // agent or object name
89 LLUUID mFromID; // agent id or object id 90 LLUUID mFromID; // agent id or object id
@@ -97,6 +98,7 @@ public:
97 BOOL mMuted; // pass muted chat to maintain list of chatters 98 BOOL mMuted; // pass muted chat to maintain list of chatters
98 F64 mTime; // viewer only, seconds from viewer start 99 F64 mTime; // viewer only, seconds from viewer start
99 LLVector3 mPosAgent; 100 LLVector3 mPosAgent;
101 std::string mURL;
100}; 102};
101 103
102#endif 104#endif