summaryrefslogtreecommitdiff
path: root/lingucomponent
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-09-27 09:19:10 +0300
committerTor Lillqvist <tml@iki.fi>2012-09-27 23:52:21 +0300
commit6beb0d37b03253be3aa42189b9995b512d9d8f72 (patch)
tree53156b9111b832ddfa8dd09d2d453efb07157f9b /lingucomponent
parent97e7f62481d8d3b6653f292c5069df133c684f3e (diff)
64-bit fix
Change-Id: Ifa5b084da7f59f6e123bf49b49bf68725741e0ef
Diffstat (limited to 'lingucomponent')
-rw-r--r--lingucomponent/source/spellcheck/macosxspell/macspellimp.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
index 5baf4d411cea..c094195b589c 100644
--- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
+++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
@@ -269,7 +269,7 @@ sal_Int16 MacSpellChecker::GetSpellFailure( const OUString &rWord, const Locale
aLang = [aLang stringByAppendingString:aTaggedCountry];
}
- int aCount;
+ NSInteger aCount;
NSRange range = [macSpell checkSpellingOfString:aNSStr startingAt:0 language:aLang wrap:sal_False inSpellDocumentWithTag:macTag wordCount:&aCount];
int rVal = 0;
if(range.length>0)