diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-01-05 13:52:17 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-01-05 13:52:17 +0100 |
commit | c03d803a723e3325b210346126115457e914f605 (patch) | |
tree | 4de546352d3bd7f8534b07128cf946638790d93c /sw | |
parent | 910817d7364253c8ed0dc876e5e38fdc707e0ee8 (diff) |
Replace side-effect--only uses of makeStringAndClear() with setLength(0)
Change-Id: Iaf8011f1bd6a10b324653899b7f51458f7d0b68a
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/rtfsdrexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/rtfsdrexport.cxx b/sw/source/filter/ww8/rtfsdrexport.cxx index 838591a096ce..4397dffa5da8 100644 --- a/sw/source/filter/ww8/rtfsdrexport.cxx +++ b/sw/source/filter/ww8/rtfsdrexport.cxx @@ -61,7 +61,7 @@ void RtfSdrExport::OpenContainer(sal_uInt16 nEscherContainer, int nRecInstance) { m_nShapeType = ESCHER_ShpInst_Nil; if (!m_aShapeStyle.isEmpty()) - m_aShapeStyle.makeStringAndClear(); + m_aShapeStyle.setLength(0); m_aShapeStyle.ensureCapacity(200); m_aShapeProps.clear(); } |