From bb589f8e5b267a663c5034343f96808a4814f7b3 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 20 Apr 2018 08:51:12 +0200 Subject: loplugin:redundantfcast (clang-cl) Change-Id: I2ce9f8bcf4631ea93407eeaa49ca27eed3eb8e23 --- shell/source/win32/ooofilereader/contentreader.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') 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 ); -- cgit