diff options
-rw-r--r-- | cui/source/tabpages/autocdlg.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cui/source/tabpages/autocdlg.cxx b/cui/source/tabpages/autocdlg.cxx index a5bcab64f949..147a18fb9192 100644 --- a/cui/source/tabpages/autocdlg.cxx +++ b/cui/source/tabpages/autocdlg.cxx @@ -2463,10 +2463,10 @@ void OfaAutoCompleteTabPage::CopyToClipboard() const rtl::OStringBuffer sData; const sal_Char aLineEnd[] = -#if defined(UNX) - "\012"; -#else +#if defined(WNT) "\015\012"; +#else + "\012"; #endif rtl_TextEncoding nEncode = osl_getThreadTextEncoding(); |