diff options
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/bastyp/frmhtmlw.cxx | 6 |
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, |