diff options
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 ); |