[Libreoffice-commits] core.git: lingucomponent/source
Herbert Dürr
hdu at apache.org
Thu May 9 04:04:01 PDT 2013
lingucomponent/source/spellcheck/macosxspell/macspellimp.mm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
New commits:
commit b4d9ed143471659ef0905379c5ebd60ee711c1e4
Author: Herbert Dürr <hdu at apache.org>
Date: Tue Apr 16 11:20:17 2013 +0000
small optimization, don't call objectAtIndex twice
(cherry picked from commit a88630fb326fa4dcbe28edd1c149c8e5e7b7f123)
Conflicts:
lingucomponent/source/spellcheck/macosxspell/macspellimp.cxx
Change-Id: Ic48281be27bf43f8a564f46684ddb53a2d83d80e
diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
index c2ca438..64cc1c1 100644
--- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
+++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
@@ -120,9 +120,10 @@ Sequence< Locale > SAL_CALL MacSpellChecker::getLocales()
//Test for existence of the dictionaries
for (unsigned int i = 0; i < [aLocales count]; i++)
{
- if( [macSpell setLanguage:[aLocales objectAtIndex:i] ] )
+ NSString* pLangStr = (NSString*)[aLocales objectAtIndex:i];
+ if( [macSpell setLanguage:pLangStr ] )
{
- postspdict.push_back( [ aLocales objectAtIndex:i ] );
+ postspdict.push_back( pLangStr );
}
}
More information about the Libreoffice-commits
mailing list