diff options
Diffstat (limited to 'sfx2/source')
-rw-r--r-- | sfx2/source/appl/sfxhelp.cxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/sfx2/source/appl/sfxhelp.cxx b/sfx2/source/appl/sfxhelp.cxx index 2cde9aef54fa..6d5244b2fba1 100644 --- a/sfx2/source/appl/sfxhelp.cxx +++ b/sfx2/source/appl/sfxhelp.cxx @@ -231,28 +231,6 @@ SfxHelp::SfxHelp() : } pImp = new SfxHelp_Impl(); - - OUString aLocaleStr = HelpLocaleString(); - - sal_Int32 nSepPos = aLocaleStr.indexOf( '_' ); - if ( nSepPos != -1 ) - { - aLanguageStr = aLocaleStr.copy( 0, nSepPos ); - aCountryStr = aLocaleStr.copy( nSepPos+1 ); - } - else - { - nSepPos = aLocaleStr.indexOf( '-' ); - if ( nSepPos != -1 ) - { - aLanguageStr = aLocaleStr.copy( 0, nSepPos ); - aCountryStr = aLocaleStr.copy( nSepPos+1 ); - } - else - { - aLanguageStr = aLocaleStr; - } - } } SfxHelp::~SfxHelp() |