From e7da6a6bc98271aad82a5db17e2af30c95b4c2ac Mon Sep 17 00:00:00 2001 From: Stephan Witt Date: Thu, 16 Dec 2010 07:58:38 +0000 Subject: [PATCH] fix data type conversion related compiler warnings git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36899 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/AppleSpeller.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/support/AppleSpeller.m b/src/support/AppleSpeller.m index aecb787551..86384cc885 100644 --- a/src/support/AppleSpeller.m +++ b/src/support/AppleSpeller.m @@ -115,7 +115,7 @@ SpellCheckResult AppleSpeller_check(AppleSpeller speller, const char * word, con result = SPELL_CHECK_LEARNED; } } else { - int capacity = [speller->misspelled count] + 1; + NSUInteger capacity = [speller->misspelled count] + 1; NSMutableArray * misspelled = [NSMutableArray arrayWithCapacity:capacity]; [misspelled addObjectsFromArray:speller->misspelled]; [misspelled addObject:[NSValue valueWithRange:match]]; @@ -233,7 +233,7 @@ int AppleSpeller_numMisspelledWords(AppleSpeller speller) void AppleSpeller_misspelledWord(AppleSpeller speller, int index, int * start, int * length) { - NSRange range = [[speller->misspelled objectAtIndex:index] rangeValue]; + NSRange range = [[speller->misspelled objectAtIndex:(NSUInteger)index] rangeValue]; *start = range.location; *length = range.length; } -- 2.39.5