summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-06-24 17:10:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-06-24 18:23:04 +0200
commit3c6d03514238a9713c7ed6590ac8fbc8daba82a8 (patch)
treed8732517a8f3878fc517e1cdb37d78729f4d0d8d
parent07cda8035c34ca9f8ac3ba911a2b691349665fc7 (diff)
Remove obsolete comment about LF on old Mac OS
(and where sticking to numeric '\x0A' is probably cleaner anyway) Change-Id: I77efcffea7fe246984be0a599f3c403397b8a9c6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97043 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r--sw/source/filter/html/swhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 940642a816d4..7ac757c6ec92 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -5194,7 +5194,7 @@ void SwHTMLParser::InsertLineBreak()
if( !bCleared && !bBreakItem )
{
// If no CLEAR could or should be executed, a line break will be inserted
- OUString sTmp( u'\x000a' ); // make the Mac happy :-)
+ OUString sTmp( u'\x000a' );
m_xDoc->getIDocumentContentOperations().InsertString( *m_pPam, sTmp );
}
else if( m_pPam->GetPoint()->nContent.GetIndex() )