diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-04-20 08:51:12 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-04-20 08:51:12 +0200 |
commit | bb589f8e5b267a663c5034343f96808a4814f7b3 (patch) | |
tree | 5adcfc7a952ea8832bcfdfcc4c27fba72141b6c1 /shell | |
parent | 900b1109a94c1d72c17ab429da1b6c6c2bf79ac6 (diff) |
loplugin:redundantfcast (clang-cl)
Change-Id: I2ce9f8bcf4631ea93407eeaa49ca27eed3eb8e23
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/win32/ooofilereader/contentreader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/win32/ooofilereader/contentreader.cxx b/shell/source/win32/ooofilereader/contentreader.cxx index af6bb81df648..2093c837fcba 100644 --- a/shell/source/win32/ooofilereader/contentreader.cxx +++ b/shell/source/win32/ooofilereader/contentreader.cxx @@ -208,7 +208,7 @@ void CContentReader::characters( const std::wstring& character ) { if ( character.length() > 0 && !HasOnlySpaces( character ) ) { - addChunk( getLocale( getCurrentContentStyle() ), ::std::wstring( character ) ); + addChunk( getLocale( getCurrentContentStyle() ), character ); ITag* pTagBuilder = m_TagBuilderStack.top(); pTagBuilder->addCharacters( character ); |