summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2019-10-12 08:27:49 +0200
committerStephan Bergmann <sbergman@redhat.com>2019-10-12 10:02:35 +0200
commit8ab3f399187922452e3f29ce5e1fb933bd3a22a9 (patch)
treef308c450453f85fac076cc766dbfdec04eb5d370 /sfx2
parent576611895e51186d38ddefa10ed8d66075d9de37 (diff)
All occurrences of WriteOStringBuffer(b) can easily be replaced...
...with WriteOString(b.makeStringAndClear()) Change-Id: I46be4f80d6633b5c51a2c3d99f9faf0db5764d3f Reviewed-on: https://gerrit.libreoffice.org/80704 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/bastyp/frmhtmlw.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/bastyp/frmhtmlw.cxx b/sfx2/source/bastyp/frmhtmlw.cxx
index 23bf6702b7cc..b36539f3a8c3 100644
--- a/sfx2/source/bastyp/frmhtmlw.cxx
+++ b/sfx2/source/bastyp/frmhtmlw.cxx
@@ -307,7 +307,7 @@ void SfxFrameHTMLWriter::Out_FrameDescriptor(
.append('=').append(pStr);
}
}
- rOut.WriteOStringBuffer( sOut );
+ rOut.WriteOString( sOut.makeStringAndClear() );
}
catch (const uno::Exception&)
{