diff options
author | Jacek Antonelli | 2008-08-15 23:44:59 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:59 -0500 |
commit | a408bac29378072fbf36864164149458c978cfcc (patch) | |
tree | 67feccf1a5d3816611ba48d6762f86f0f7f4b1f6 /linden/indra/llxml | |
parent | Second Life viewer sources 1.17.0.12 (diff) | |
download | meta-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 'linden/indra/llxml')
-rw-r--r-- | linden/indra/llxml/llxmlnode.cpp | 3 | ||||
-rw-r--r-- | linden/indra/llxml/llxmlparser.cpp | 2 |
2 files changed, 4 insertions, 1 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 | ||
46 | const S32 MAX_COLUMN_WIDTH = 80; | 47 | const 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; |
diff --git a/linden/indra/llxml/llxmlparser.cpp b/linden/indra/llxml/llxmlparser.cpp index 4162e7d..5f931d9 100644 --- a/linden/indra/llxml/llxmlparser.cpp +++ b/linden/indra/llxml/llxmlparser.cpp | |||
@@ -2,7 +2,7 @@ | |||
2 | * @file llxmlparser.cpp | 2 | * @file llxmlparser.cpp |
3 | * @brief LLXmlParser implementation | 3 | * @brief LLXmlParser implementation |
4 | * | 4 | * |
5 | * Copyright (c) 2002-2007`, Linden Research, Inc. | 5 | * Copyright (c) 2002-2007, Linden Research, Inc. |
6 | * | 6 | * |
7 | * Second Life Viewer Source Code | 7 | * Second Life Viewer Source Code |
8 | * The source code in this file ("Source Code") is provided by Linden Lab | 8 | * The source code in this file ("Source Code") is provided by Linden Lab |