diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 21:07:09 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-06 21:07:09 +0200 |
commit | 6720da5d7a59323df6fde12b2a24e548d6a9b812 (patch) | |
tree | 70332b5ba23ccb0fa93c4daf1a59a3dcfe6298d2 /sw | |
parent | b6ba851c02570c17e0484c94065a2e72c5675e58 (diff) |
loplugin:stringconstant
Change-Id: I0285ba64213bfd5180e09a40ea6fdf4b210f431b
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/wrtww8.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtww8.cxx b/sw/source/filter/ww8/wrtww8.cxx index 06697ceca15c..a038aa174916 100644 --- a/sw/source/filter/ww8/wrtww8.cxx +++ b/sw/source/filter/ww8/wrtww8.cxx @@ -3401,7 +3401,7 @@ void WW8Export::PrepareStorage() }; SvGlobalName aGName(MSO_WW8_CLASSID); - GetWriter().GetStorage().SetClass( aGName, SotClipboardFormatId::NONE, OUString::createFromAscii( pName )); + GetWriter().GetStorage().SetClass( aGName, SotClipboardFormatId::NONE, pName); tools::SvRef<SotStorageStream> xStor( GetWriter().GetStorage().OpenSotStream(sCompObj) ); xStor->Write( pData, sizeof( pData ) ); |