[Libreoffice-commits] core.git: sw/source
Stephan Bergmann
sbergman at redhat.com
Fri Jun 26 06:18:17 PDT 2015
sw/source/uibase/envelp/envimg.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 198b5aac12751e7f64e398935313077d8c412a8b
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Fri Jun 26 15:17:35 2015 +0200
Fix WNT
Change-Id: I184787f3effe5d5ee673de246c94aa4a4b4b290c
diff --git a/sw/source/uibase/envelp/envimg.cxx b/sw/source/uibase/envelp/envimg.cxx
index 135db95..766c155 100644
--- a/sw/source/uibase/envelp/envimg.cxx
+++ b/sw/source/uibase/envelp/envimg.cxx
@@ -35,9 +35,9 @@
#include <unomid.h>
#ifdef WNT
-#define NEXTLINE OUString("\r\n")
+#define NEXTLINE "\r\n"
#else
-#define NEXTLINE '\n'
+#define NEXTLINE "\n"
#endif
using namespace utl;
@@ -66,7 +66,7 @@ OUString MakeSender()
else if (sToken == "CR")
{
if(bLastLength)
- sRet += OUStringLiteral1<NEXTLINE>();
+ sRet += NEXTLINE;
bLastLength = true;
}
else if (sToken == "FIRSTNAME")
More information about the Libreoffice-commits
mailing list