]> git.lyx.org Git - features.git/commitdiff
tiny simplification
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 3 Aug 2010 22:31:16 +0000 (22:31 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 3 Aug 2010 22:31:16 +0000 (22:31 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35045 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/AppleSpeller.m

index 4ca1eb0d512173bfc95f7fb508a22eff3e8141c4..560d014fb85368eb816b006c04665ef210bee10f 100644 (file)
@@ -74,11 +74,6 @@ int checkAppleSpeller(AppleSpeller speller, const char * word, const char * lang
                return 0;
 
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
-#if defined(__MAC_OS_X_VERSION_MAX_ALLOWED) && (__MAC_OS_X_VERSION_MAX_ALLOWED >= 1050)
-       NSInteger wordcount;
-#else
-       int wordcount;
-#endif
        NSString * word_ = toString(speller, word);
        NSString * lang_ = toString(speller, lang);
 
@@ -86,9 +81,9 @@ int checkAppleSpeller(AppleSpeller speller, const char * word, const char * lang
                checkSpellingOfString:word_
                startingAt:0
                language:lang_
-               wrap:(BOOL)NO
+               wrap:NO
                inSpellDocumentWithTag:speller->doctag
-               wordCount:&wordcount];
+               wordCount:NULL];
 
        [word_ release];
        [lang_ release];