diff options
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/svhtml/htmlout.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/svhtml/htmlout.cxx b/svtools/source/svhtml/htmlout.cxx index 1c2856050d0f..4f027b0c10de 100644 --- a/svtools/source/svhtml/htmlout.cxx +++ b/svtools/source/svhtml/htmlout.cxx @@ -605,12 +605,12 @@ SvStream& HTMLOutFuncs::Out_ImageMap( SvStream& rStream, if( rOutName.isEmpty() ) return rStream; - OStringBuffer sOut; - sOut.append(OString::Concat("<") + - OOO_STRING_SVTOOLS_HTML_map - " " - OOO_STRING_SVTOOLS_HTML_O_name - "=\""); + OStringBuffer sOut = + OString::Concat("<") + + OOO_STRING_SVTOOLS_HTML_map + " " + OOO_STRING_SVTOOLS_HTML_O_name + "=\""; rStream.WriteOString( sOut ); sOut.setLength(0); Out_String( rStream, rOutName ); |