[Libreoffice-commits] core.git: Branch 'libreoffice-4-3-6' - sw/source
Caolán McNamara
caolanm at redhat.com
Tue Jan 27 05:41:41 PST 2015
sw/source/filter/html/wrthtml.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 3069971d1cca8660fe251c7295ae4afe40f2cb81
Author: Caolán McNamara <caolanm at redhat.com>
Date: Sun Jan 25 14:12:22 2015 +0000
coverity#1266508 Useless call (gold)
regression from
commit 832e5aadbff006ec24959162c29756fe2b1982be
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Oct 8 10:06:59 2013 +0100
Related: fdo#38838 remove UniString::SearchAndReplaceAll
(cherry picked from commit 6cde3ff3dd646f51f37f2342863371db8de9087a)
Conflicts:
sw/source/filter/html/wrthtml.cxx
Change-Id: If792925eddc9c640584a2e8fa313a4297a32c74c
Reviewed-on: https://gerrit.libreoffice.org/14173
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
Tested-by: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
diff --git a/sw/source/filter/html/wrthtml.cxx b/sw/source/filter/html/wrthtml.cxx
index b9464f6..b5f7848 100644
--- a/sw/source/filter/html/wrthtml.cxx
+++ b/sw/source/filter/html/wrthtml.cxx
@@ -1134,8 +1134,7 @@ void SwHTMLWriter::OutImplicitMark( const OUString& rMark,
{
if( !rMark.isEmpty() && !aImplicitMarks.empty() )
{
- OUString sMark( rMark );
- sMark + OUString(cMarkSeparator) + OUString::createFromAscii(pMarkType);
+ OUString sMark(rMark + OUString(cMarkSeparator) + OUString::createFromAscii(pMarkType));
if( 0 != aImplicitMarks.erase( sMark ) )
{
OutAnchor(sMark.replace('?', '_')); // '?' causes problems in IE/Netscape 5
More information about the Libreoffice-commits
mailing list