diff options
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/migration/services/wordbookmigration.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/migration/services/wordbookmigration.cxx b/desktop/source/migration/services/wordbookmigration.cxx index df8a30f57082..91950c4f49a7 100644 --- a/desktop/source/migration/services/wordbookmigration.cxx +++ b/desktop/source/migration/services/wordbookmigration.cxx @@ -112,7 +112,7 @@ bool IsUserWordbook( const OUString& rFile ) SvStream* pStream = ::utl::UcbStreamHelper::CreateStream( OUString(rFile), StreamMode::STD_READ ); if ( pStream && !pStream->GetError() ) { - static const sal_Char* pVerOOo7 = "OOoUserDict1"; + static const sal_Char* const pVerOOo7 = "OOoUserDict1"; sal_uInt64 const nSniffPos = pStream->Tell(); static std::size_t nVerOOo7Len = sal::static_int_cast< std::size_t >(strlen( pVerOOo7 )); sal_Char pMagicHeader[MAX_HEADER_LENGTH]; |