aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewermessage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llviewermessage.cpp')
-rw-r--r--linden/indra/newview/llviewermessage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llviewermessage.cpp b/linden/indra/newview/llviewermessage.cpp
index 47231fb..e01aa4f 100644
--- a/linden/indra/newview/llviewermessage.cpp
+++ b/linden/indra/newview/llviewermessage.cpp
@@ -1929,7 +1929,7 @@ void process_improved_im(LLMessageSystem *msg, void **user_data)
1929 { 1929 {
1930 return; 1930 return;
1931 } 1931 }
1932 chat.mText = name + separator_string + message.substr(message_offset); 1932 chat.mText = std::string("IM: ") + name + separator_string + message.substr(message_offset);
1933 chat.mFromName = name; 1933 chat.mFromName = name;
1934 1934
1935 // Build a link to open the object IM info window. 1935 // Build a link to open the object IM info window.