summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-10-12 21:16:53 +0300
committerTor Lillqvist <tml@collabora.com>2013-10-12 21:16:53 +0300
commiteca81d9969e232b1236bc5020ab2b9304d5f4640 (patch)
treef289beb813c8d89c387ce919eaaab2de870f644c /sfx2
parent33fdb0b1161ac1b8786f26de840811a34867730c (diff)
Test _WIN32 instead of UNX as it's Windows that is the special case
Change-Id: I66e6167df47ac3051d543490ff780bc09dedd82d
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/frmhtmlw.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/bastyp/frmhtmlw.cxx b/sfx2/source/bastyp/frmhtmlw.cxx
index 4fa984c9f8ea..fda28524b0ec 100644
--- a/sfx2/source/bastyp/frmhtmlw.cxx
+++ b/sfx2/source/bastyp/frmhtmlw.cxx
@@ -54,10 +54,10 @@ static sal_Char const sHTML_SC_yes[] = "YES";
static sal_Char const sHTML_SC_no[] = "NO";
static sal_Char const sHTML_MIME_text_html[] = "text/html; charset=";
-#if defined(UNX)
-const sal_Char SfxFrameHTMLWriter::sNewLine[] = "\012";
-#else
+#ifdef _WIN32
const sal_Char SfxFrameHTMLWriter::sNewLine[] = "\015\012";
+#else
+const sal_Char SfxFrameHTMLWriter::sNewLine[] = "\012";
#endif
void SfxFrameHTMLWriter::OutMeta( SvStream& rStrm,