diff options
Diffstat (limited to 'oox/source/drawingml/chart/titleconverter.cxx')
-rw-r--r-- | oox/source/drawingml/chart/titleconverter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/titleconverter.cxx b/oox/source/drawingml/chart/titleconverter.cxx index 8586ccbbc339..6237e39ba0b3 100644 --- a/oox/source/drawingml/chart/titleconverter.cxx +++ b/oox/source/drawingml/chart/titleconverter.cxx @@ -124,7 +124,7 @@ Reference< XFormattedString > TextConverter::appendFormattedString( { xFmtStr = FormattedString::create( ConverterRoot::getComponentContext() ); xFmtStr->setString( bAddNewLine ? (rString + "\n") : rString ); - orStringVec.push_back( xFmtStr ); + orStringVec.emplace_back(xFmtStr ); } catch( Exception& ) { |