Kaydet (Commit) fcb0e1e9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Test _WIN32 instead of UNX as it's Windows that is the special case

Change-Id: I701ea390440023f1aac0debb48747a8f1a216972
üst bee2ff98
......@@ -276,10 +276,10 @@ sal_Bool SwEditShell::GetSelectedText( String &rBuf, int nHndlParaBrk )
else if( IsSelFullPara() &&
GETSELTXT_PARABRK_TO_ONLYCR != nHndlParaBrk )
{
#if defined(UNX)
rBuf += '\012';
#else
#ifdef _WIN32
rBuf += OUString("\015\012");
#else
rBuf += '\012';
#endif
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment