summaryrefslogtreecommitdiff
path: root/sfx2
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-07-10 20:52:25 +0200
committerEike Rathke <erack@redhat.com>2013-07-10 20:53:56 +0200
commit3bc422573b480476bdfa775bdcf259532f4e09c6 (patch)
tree0c7546816803fc8470a9423cf27c77b5b897fb4b /sfx2
parentd3a221df1a513642da16f1301db7734fc003a0c7 (diff)
removed unused language/country string member variables
Change-Id: I7659dac1a3d17b4099f310fd7b6d17455bdda2eb
Diffstat (limited to 'sfx2')
-rw-r--r--sfx2/source/appl/sfxhelp.cxx22
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()