aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llchat.h
diff options
context:
space:
mode:
authorMcCabe Maxsted2009-09-11 00:33:33 -0700
committerMcCabe Maxsted2009-09-11 00:33:33 -0700
commitefa0d701845542e9ef555260fe6d2ad0beeb0760 (patch)
tree4527fe04a062d3353e4d1a77c547d1c2b1d475e9 /linden/indra/llcommon/llchat.h
parentFixed missing 'm' for draw distance slider (diff)
downloadmeta-impy-efa0d701845542e9ef555260fe6d2ad0beeb0760.zip
meta-impy-efa0d701845542e9ef555260fe6d2ad0beeb0760.tar.gz
meta-impy-efa0d701845542e9ef555260fe6d2ad0beeb0760.tar.bz2
meta-impy-efa0d701845542e9ef555260fe6d2ad0beeb0760.tar.xz
Backported clickable object names from 1.23
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 1bb3f3b..ec86450 100644
--- a/linden/indra/llcommon/llchat.h
+++ b/linden/indra/llcommon/llchat.h
@@ -77,9 +77,10 @@ public:
77 mAudible(CHAT_AUDIBLE_FULLY), 77 mAudible(CHAT_AUDIBLE_FULLY),
78 mMuted(FALSE), 78 mMuted(FALSE),
79 mTime(0.0), 79 mTime(0.0),
80 mPosAgent() 80 mPosAgent(),
81 mURL()
81 { } 82 { }
82 83
83 std::string mText; // UTF-8 line of text 84 std::string mText; // UTF-8 line of text
84 std::string mFromName; // agent or object name 85 std::string mFromName; // agent or object name
85 LLUUID mFromID; // agent id or object id 86 LLUUID mFromID; // agent id or object id
@@ -89,6 +90,7 @@ public:
89 BOOL mMuted; // pass muted chat to maintain list of chatters 90 BOOL mMuted; // pass muted chat to maintain list of chatters
90 F64 mTime; // viewer only, seconds from viewer start 91 F64 mTime; // viewer only, seconds from viewer start
91 LLVector3 mPosAgent; 92 LLVector3 mPosAgent;
93 std::string mURL;
92}; 94};
93 95
94#endif 96#endif