Kaydet (Commit) c984b76e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:loopvartoosmall

Change-Id: I33f4e74f97ba52b9240e6304d53eb256bd822060
üst 1d25c710
......@@ -118,7 +118,7 @@ Sequence< Locale > SAL_CALL MacSpellChecker::getLocales()
NSArray *aLocales = [NSLocale availableLocaleIdentifiers];
//Test for existence of the dictionaries
for (unsigned int i = 0; i < [aLocales count]; i++)
for (NSUInteger i = 0; i < [aLocales count]; i++)
{
NSString* pLangStr = (NSString*)[aLocales objectAtIndex:i];
if( [macSpell setLanguage:pLangStr ] )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment