aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llxml/llxmlnode.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:59 -0500
committerJacek Antonelli2008-08-15 23:44:59 -0500
commita408bac29378072fbf36864164149458c978cfcc (patch)
tree67feccf1a5d3816611ba48d6762f86f0f7f4b1f6 /linden/indra/llxml/llxmlnode.cpp
parentSecond Life viewer sources 1.17.0.12 (diff)
downloadmeta-impy-a408bac29378072fbf36864164149458c978cfcc.zip
meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.gz
meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.bz2
meta-impy-a408bac29378072fbf36864164149458c978cfcc.tar.xz
Second Life viewer sources 1.17.1.0
Diffstat (limited to '')
-rw-r--r--linden/indra/llxml/llxmlnode.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/llxml/llxmlnode.cpp b/linden/indra/llxml/llxmlnode.cpp
index 26906a4..bdbb606 100644
--- a/linden/indra/llxml/llxmlnode.cpp
+++ b/linden/indra/llxml/llxmlnode.cpp
@@ -41,6 +41,7 @@
41#include "v3dmath.h" 41#include "v3dmath.h"
42#include "v4math.h" 42#include "v4math.h"
43#include "llquaternion.h" 43#include "llquaternion.h"
44#include "llstring.h"
44#include "lluuid.h" 45#include "lluuid.h"
45 46
46const S32 MAX_COLUMN_WIDTH = 80; 47const S32 MAX_COLUMN_WIDTH = 80;
@@ -3088,6 +3089,8 @@ LLString LLXMLNode::getTextContents() const
3088 msg = mValue.substr(start); 3089 msg = mValue.substr(start);
3089 } 3090 }
3090 } 3091 }
3092 // Convert any internal CR to LF
3093 msg = utf8str_removeCRLF(msg);
3091 } 3094 }
3092 } 3095 }
3093 return msg; 3096 return msg;