diff options
author | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-13 15:54:57 -0200 |
---|---|---|
committer | Olivier Hallot <olivier.hallot@alta.org.br> | 2012-01-13 19:11:34 -0200 |
commit | 38423e0ad2a8e2a902aeb37391aef0b543c09d68 (patch) | |
tree | 2610f36fed95d4540d2e1d7e682dbd47bf6cf4ca /svl/source/config/languageoptions.cxx | |
parent | e60b212cc9f02d68ee638106a5881c21ac40ce8d (diff) |
Fix for fdo43460 Part XXXVI getLength() to isEmpty()
Part XXXVI
Modules
svl
Diffstat (limited to 'svl/source/config/languageoptions.cxx')
-rw-r--r-- | svl/source/config/languageoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/config/languageoptions.cxx b/svl/source/config/languageoptions.cxx index 77f1fce83a3b..94fbf42ff372 100644 --- a/svl/source/config/languageoptions.cxx +++ b/svl/source/config/languageoptions.cxx @@ -208,7 +208,7 @@ void SvtSystemLanguageOptions::Notify( const com::sun::star::uno::Sequence< r LanguageType SvtSystemLanguageOptions::GetWin16SystemLanguage() { - if( m_sWin16SystemLocale.getLength() == 0 ) + if( m_sWin16SystemLocale.isEmpty() ) return LANGUAGE_NONE; return MsLangId::convertIsoStringToLanguage( m_sWin16SystemLocale ); } |