bump product version to 6.3.0.0.beta1
[LibreOffice.git] / lingucomponent / source / spellcheck / macosxspell / macspellimp.mm
blob0fad4078e32ef9a9af4cea91a72d4e989c14ceb8
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
20 #include <com/sun/star/uno/Reference.h>
22 #include <com/sun/star/linguistic2/SpellFailure.hpp>
23 #include <com/sun/star/linguistic2/XLinguProperties.hpp>
24 #include <cppuhelper/factory.hxx>
25 #include <cppuhelper/supportsservice.hxx>
26 #include <com/sun/star/registry/XRegistryKey.hpp>
27 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
28 #include <tools/debug.hxx>
29 #include <osl/mutex.hxx>
31 #include "macspellimp.hxx"
33 #include <linguistic/spelldta.hxx>
34 #include <unotools/pathoptions.hxx>
35 #include <unotools/useroptions.hxx>
36 #include <osl/file.hxx>
37 #include <rtl/ustrbuf.hxx>
39 using namespace utl;
40 using namespace osl;
41 using namespace com::sun::star;
42 using namespace com::sun::star::beans;
43 using namespace com::sun::star::lang;
44 using namespace com::sun::star::uno;
45 using namespace com::sun::star::linguistic2;
46 using namespace linguistic;
48 MacSpellChecker::MacSpellChecker() :
49     aEvtListeners( GetLinguMutex() )
51     aDEncs = nullptr;
52     aDLocs = nullptr;
53     aDNames = nullptr;
54     bDisposing = false;
55     pPropHelper = nullptr;
56     numdict = 0;
57 #ifndef IOS
58     NSApplicationLoad();
59     NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
60     macTag = [NSSpellChecker uniqueSpellDocumentTag];
61     [pool release];
62 #else
63     pChecker = [[UITextChecker alloc] init];
64 #endif
68 MacSpellChecker::~MacSpellChecker()
70   numdict = 0;
71   if (aDEncs) delete[] aDEncs;
72   aDEncs = nullptr;
73   if (aDLocs) delete[] aDLocs;
74   aDLocs = nullptr;
75   if (aDNames) delete[] aDNames;
76   aDNames = nullptr;
77   if (pPropHelper)
78      pPropHelper->RemoveAsPropListener();
82 PropertyHelper_Spell & MacSpellChecker::GetPropHelper_Impl()
84     if (!pPropHelper)
85     {
86         Reference< XLinguProperties >   xPropSet( GetLinguProperties(), UNO_QUERY );
88         pPropHelper = new PropertyHelper_Spell( static_cast<XSpellChecker *>(this), xPropSet );
89         xPropHelper = pPropHelper;
90         pPropHelper->AddAsPropListener();   //! after a reference is established
91     }
92     return *pPropHelper;
96 Sequence< Locale > SAL_CALL MacSpellChecker::getLocales()
98     MutexGuard  aGuard( GetLinguMutex() );
100     // this routine should return the locales supported by the installed
101     // dictionaries.  So here we need to parse both the user edited
102     // dictionary list and the shared dictionary list
103     // to see what dictionaries the admin/user has installed
105     int numshr;          // number of shared dictionary entries
106     rtl_TextEncoding aEnc = RTL_TEXTENCODING_UTF8;
108     std::vector<NSString *> postspdict;
110     if (!numdict) {
112         // invoke a dictionary manager to get the user dictionary list
113         // TODO How on macOS?
115         // invoke a second  dictionary manager to get the shared dictionary list
116 #ifdef MACOSX
117         NSArray *aSpellCheckLanguages = [[NSSpellChecker sharedSpellChecker] availableLanguages];
118 #else
119         NSArray *aSpellCheckLanguages = [UITextChecker availableLanguages];
120 #endif
122         for (NSUInteger i = 0; i < [aSpellCheckLanguages count]; i++)
123         {
124             NSString* pLangStr = static_cast<NSString*>([aSpellCheckLanguages objectAtIndex:i]);
126             // Fix up generic languages (without territory code) and odd combinations that LO
127             // doesn't handle.
128             if ([pLangStr isEqualToString:@"da"])
129             {
130                 postspdict.push_back( @"da_DK" );
131             }
132             else if ([pLangStr isEqualToString:@"de"])
133             {
134                 const std::vector<NSString*> aDE
135                     { @"AT", @"BE", @"CH", @"DE", @"LI", @"LU" };
136                 for (auto c: aDE)
137                 {
138                     pLangStr = [@"de_" stringByAppendingString: c];
139                     postspdict.push_back( pLangStr );
140                 }
141             }
142 #ifdef IOS
143             // iOS says it has specifically de_DE, but let's assume it is good enough for the other
144             // variants, too, for now.
145             else if ([pLangStr isEqualToString:@"de_DE"])
146             {
147                 const std::vector<NSString*> aDE
148                     { @"AT", @"BE", @"CH", @"DE", @"LI", @"LU" };
149                 for (auto c: aDE)
150                 {
151                     pLangStr = [@"de_" stringByAppendingString: c];
152                     postspdict.push_back( pLangStr );
153                 }
154             }
155 #endif
156             else if ([pLangStr isEqualToString:@"en"])
157             {
158                 // System has en_AU, en_CA, en_GB, and en_IN. Add the rest.
159                 const std::vector<NSString*> aEN
160                     { @"BW", @"BZ", @"GH", @"GM", @"IE", @"JM", @"MU", @"MW", @"MY", @"NA",
161                       @"NZ", @"PH", @"TT", @"US", @"ZA", @"ZW" };
162                 for (auto c: aEN)
163                 {
164                     pLangStr = [@"en_" stringByAppendingString: c];
165                     postspdict.push_back( pLangStr );
166                 }
167             }
168             else if ([pLangStr isEqualToString:@"en_JP"]
169                      || [pLangStr isEqualToString:@"en_SG"])
170             {
171                 // Just skip, LO doesn't have those yet in this context.
172             }
173             else if ([pLangStr isEqualToString:@"es"])
174             {
175                 const std::vector<NSString*> aES
176                     { @"AR", @"BO", @"CL", @"CO", @"CR", @"CU", @"DO", @"EC", @"ES", @"GT",
177                       @"HN", @"MX", @"NI", @"PA", @"PE", @"PR", @"PY", @"SV", @"UY", @"VE" };
178                 for (auto c: aES)
179                 {
180                     pLangStr = [@"es_" stringByAppendingString: c];
181                     postspdict.push_back( pLangStr );
182                 }
183             }
184             else if ([pLangStr isEqualToString:@"fi"])
185             {
186                 postspdict.push_back( @"fi_FI" );
187             }
188             else if ([pLangStr isEqualToString:@"fr"])
189             {
190                 const std::vector<NSString*> aFR
191                     { @"BE", @"BF", @"BJ", @"CA", @"CH", @"CI", @"FR", @"LU", @"MC", @"ML",
192                       @"MU", @"NE", @"SN", @"TG" };
193                 for (auto c: aFR)
194                 {
195                     pLangStr = [@"fr_" stringByAppendingString: c];
196                     postspdict.push_back( pLangStr );
197                 }
198             }
199             else if ([pLangStr isEqualToString:@"it"])
200             {
201                 postspdict.push_back( @"it_CH" );
202                 postspdict.push_back( @"it_IT" );
203             }
204             else if ([pLangStr isEqualToString:@"ko"])
205             {
206                 postspdict.push_back( @"ko_KR" );
207             }
208             else if ([pLangStr isEqualToString:@"nl"])
209             {
210                 postspdict.push_back( @"nl_BE" );
211                 postspdict.push_back( @"nl_NL" );
212             }
213             else if ([pLangStr isEqualToString:@"nb"])
214             {
215                 postspdict.push_back( @"nb_NO" );
216             }
217             else if ([pLangStr isEqualToString:@"pl"])
218             {
219                 postspdict.push_back( @"pl_PL" );
220             }
221             else if ([pLangStr isEqualToString:@"ru"])
222             {
223                 postspdict.push_back( @"ru_RU" );
224             }
225             else if ([pLangStr isEqualToString:@"sv"])
226             {
227                 postspdict.push_back( @"sv_FI" );
228                 postspdict.push_back( @"sv_SE" );
229             }
230 #ifdef IOS
231             else if ([pLangStr isEqualToString:@"sv_SE"])
232             {
233                 postspdict.push_back( @"sv_FI" );
234                 postspdict.push_back( @"sv_SE" );
235             }
236 #endif
237             else if ([pLangStr isEqualToString:@"tr"])
238             {
239                 postspdict.push_back( @"tr_TR" );
240             }
241             else
242                 postspdict.push_back( pLangStr );
243         }
244         // System has pt_BR and pt_PT, add pt_AO.
245         postspdict.push_back( @"pt_AO" );
247         numshr = postspdict.size();
249         // we really should merge these and remove duplicates but since
250         // users can name their dictionaries anything they want it would
251         // be impossible to know if a real duplication exists unless we
252         // add some unique key to each myspell dictionary
253         numdict = numshr;
255         if (numdict) {
256             aDLocs = new Locale [numdict];
257             aDEncs  = new rtl_TextEncoding [numdict];
258             aDNames = new OUString [numdict];
259             aSuppLocales.realloc(numdict);
260             Locale * pLocale = aSuppLocales.getArray();
261             int numlocs = 0;
262             int newloc;
263             int i,j;
264             int k = 0;
266             //first add the user dictionaries
267             //TODO for MAC?
269             // now add the shared dictionaries
270             for (i = 0; i < numshr; i++) {
271                 NSDictionary *aLocDict = [ NSLocale componentsFromLocaleIdentifier:postspdict[i] ];
272                 NSString* aLang = [ aLocDict objectForKey:NSLocaleLanguageCode ];
273                 NSString* aCountry = [ aLocDict objectForKey:NSLocaleCountryCode ];
274                 OUString lang([aLang cStringUsingEncoding: NSUTF8StringEncoding], [aLang length], aEnc);
275                 OUString country([ aCountry cStringUsingEncoding: NSUTF8StringEncoding], [aCountry length], aEnc);
276                 Locale nLoc( lang, country, OUString() );
277                 newloc = 1;
278                 //eliminate duplicates (is this needed for MacOS?)
279                 for (j = 0; j < numlocs; j++) {
280                     if (nLoc == pLocale[j]) newloc = 0;
281                 }
282                 if (newloc) {
283                     pLocale[numlocs] = nLoc;
284                     numlocs++;
285                 }
286                 aDLocs[k] = nLoc;
287                 aDEncs[k] = 0;
288                 k++;
289             }
291             aSuppLocales.realloc(numlocs);
293         } else {
294             /* no dictionary.lst found so register no dictionaries */
295             numdict = 0;
296             aDEncs  = nullptr;
297             aDLocs = nullptr;
298             aDNames = nullptr;
299             aSuppLocales.realloc(0);
300         }
301     }
303     return aSuppLocales;
308 sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale)
310     MutexGuard  aGuard( GetLinguMutex() );
312     bool bRes = false;
313     if (!aSuppLocales.getLength())
314         getLocales();
316     sal_Int32 nLen = aSuppLocales.getLength();
317     for (sal_Int32 i = 0;  i < nLen;  ++i)
318     {
319         const Locale *pLocale = aSuppLocales.getConstArray();
320         if (rLocale == pLocale[i])
321         {
322             bRes = true;
323             break;
324         }
325     }
326     return bRes;
330 sal_Int16 MacSpellChecker::GetSpellFailure( const OUString &rWord, const Locale &rLocale )
332     rtl_TextEncoding aEnc;
334     // initialize a myspell object for each dictionary once
335         // (note: mutex is held higher up in isValid)
338     sal_Int16 nRes = -1;
340     // first handle smart quotes both single and double
341     OUStringBuffer rBuf(rWord);
342     sal_Int32 n = rBuf.getLength();
343     sal_Unicode c;
344     for (sal_Int32 ix=0; ix < n; ix++) {
345         c = rBuf[ix];
346         if ((c == 0x201C) || (c == 0x201D)) rBuf[ix] = u'"';
347         if ((c == 0x2018) || (c == 0x2019)) rBuf[ix] = u'\'';
348     }
349     OUString nWord(rBuf.makeStringAndClear());
351     if (n)
352     {
353         aEnc = 0;
354         NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
355         NSString* aNSStr = [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(nWord.getStr()) length: nWord.getLength()]autorelease];
356         NSString* aLang = [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(rLocale.Language.getStr()) length: rLocale.Language.getLength()]autorelease];
357         if(rLocale.Country.getLength()>0)
358         {
359             NSString* aCountry = [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(rLocale.Country.getStr()) length: rLocale.Country.getLength()]autorelease];
360             NSString* aTaggedCountry = [@"_" stringByAppendingString:aCountry];
361             aLang = [aLang  stringByAppendingString:aTaggedCountry];
362         }
364 #ifdef MACOSX
365         NSInteger aCount;
366         NSRange range = [[NSSpellChecker sharedSpellChecker] checkSpellingOfString:aNSStr startingAt:0 language:aLang wrap:false inSpellDocumentWithTag:macTag wordCount:&aCount];
367 #else
368         NSRange range = [pChecker rangeOfMisspelledWordInString:aNSStr range:NSMakeRange(0, [aNSStr length]) startingAt:0 wrap:NO language:aLang];
369 #endif
370         int rVal = 0;
371         if(range.length>0)
372         {
373             rVal = -1;
374         }
375         else
376         {
377             rVal = 1;
378         }
379         [pool release];
380         if (rVal != 1)
381         {
382             nRes = SpellFailure::SPELLING_ERROR;
383         } else {
384             return -1;
385         }
386     }
387     return nRes;
392 sal_Bool SAL_CALL
393     MacSpellChecker::isValid( const OUString& rWord, const Locale& rLocale,
394             const css::uno::Sequence<PropertyValue>& rProperties )
396     MutexGuard  aGuard( GetLinguMutex() );
398     if (rLocale == Locale()  ||  !rWord.getLength())
399         return true;
401     if (!hasLocale( rLocale ))
402         return true;
404     // Get property values to be used.
405     // These are be the default values set in the SN_LINGU_PROPERTIES
406     // PropertySet which are overridden by the supplied ones from the
407     // last argument.
408     // You'll probably like to use a simpler solution than the provided
409     // one using the PropertyHelper_Spell.
411     PropertyHelper_Spell &rHelper = GetPropHelper();
412     rHelper.SetTmpPropVals( rProperties );
414     sal_Int16 nFailure = GetSpellFailure( rWord, rLocale );
415     if (nFailure != -1)
416     {
417         LanguageType nLang = LinguLocaleToLanguage( rLocale );
418         // postprocess result for errors that should be ignored
419         if (   (!rHelper.IsSpellUpperCase()  && IsUpper( rWord, nLang ))
420             || (!rHelper.IsSpellWithDigits() && HasDigits( rWord ))
421             || (!rHelper.IsSpellCapitalization()
422                 &&  nFailure == SpellFailure::CAPTION_ERROR)
423         )
424             nFailure = -1;
425     }
427     return (nFailure == -1);
430 Reference< XSpellAlternatives >
431     MacSpellChecker::GetProposals( const OUString &rWord, const Locale &rLocale )
433     // Retrieves the return values for the 'spell' function call in case
434     // of a misspelled word.
435     // Especially it may give a list of suggested (correct) words:
437     Reference< XSpellAlternatives > xRes;
438         // note: mutex is held by higher up by spell which covers both
440     LanguageType nLang = LinguLocaleToLanguage( rLocale );
441     int count;
442     Sequence< OUString > aStr( 0 );
444         // first handle smart quotes (single and double)
445     OUStringBuffer rBuf(rWord);
446     sal_Int32 n = rBuf.getLength();
447     sal_Unicode c;
448     for (sal_Int32 ix=0; ix < n; ix++) {
449          c = rBuf[ix];
450          if ((c == 0x201C) || (c == 0x201D)) rBuf[ix] = u'"';
451          if ((c == 0x2018) || (c == 0x2019)) rBuf[ix] = u'\'';
452     }
453     OUString nWord(rBuf.makeStringAndClear());
455     if (n)
456     {
457         NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
458         NSString* aNSStr = [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(nWord.getStr()) length: nWord.getLength()]autorelease];
459         NSString* aLang = [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(rLocale.Language.getStr()) length: rLocale.Language.getLength()]autorelease];
460         if(rLocale.Country.getLength()>0)
461         {
462             NSString* aCountry = [[[NSString alloc] initWithCharacters: reinterpret_cast<unichar const *>(rLocale.Country.getStr()) length: rLocale.Country.getLength()]autorelease];
463             NSString* aTaggedCountry = [@"_" stringByAppendingString:aCountry];
464             aLang = [aLang  stringByAppendingString:aTaggedCountry];
465         }
466 #ifdef MACOSX
467         [[NSSpellChecker sharedSpellChecker] setLanguage:aLang];
468         NSArray *guesses = [[NSSpellChecker sharedSpellChecker] guessesForWordRange:NSMakeRange(0, [aNSStr length]) inString:aNSStr language:aLang inSpellDocumentWithTag:0];
469         (void) this; // avoid loplugin:staticmethods, the !MACOSX case uses 'this'
470 #else
471         NSArray *guesses = [pChecker guessesForWordRange:NSMakeRange(0, [aNSStr length]) inString:aNSStr language:aLang];
472 #endif
473         count = [guesses count];
474         if (count)
475         {
476            aStr.realloc( count );
477            OUString *pStr = aStr.getArray();
478            for (int ii=0; ii < count; ii++)
479            {
480                   // if needed add: if (suglst[ii] == NULL) continue;
481                   NSString* guess = [guesses objectAtIndex:ii];
482                   OUString cvtwrd(reinterpret_cast<const sal_Unicode*>([guess cStringUsingEncoding:NSUnicodeStringEncoding]), static_cast<sal_Int32>([guess length]));
483                   pStr[ii] = cvtwrd;
484            }
485         }
486         [pool release];
487     }
489     // now return an empty alternative for no suggestions or the list of alternatives if some found
490     SpellAlternatives *pAlt = new SpellAlternatives;
491     pAlt->SetWordLanguage( rWord, nLang );
492     pAlt->SetFailureType( SpellFailure::SPELLING_ERROR );
493     pAlt->SetAlternatives( aStr );
494     xRes = pAlt;
495     return xRes;
499 Reference< XSpellAlternatives > SAL_CALL
500     MacSpellChecker::spell( const OUString& rWord, const Locale& rLocale,
501             const css::uno::Sequence<PropertyValue>& rProperties )
503     MutexGuard  aGuard( GetLinguMutex() );
505     if (rLocale == Locale()  ||  !rWord.getLength())
506         return nullptr;
508     if (!hasLocale( rLocale ))
509         return nullptr;
511     Reference< XSpellAlternatives > xAlt;
512     if (!isValid( rWord, rLocale, rProperties ))
513     {
514         xAlt =  GetProposals( rWord, rLocale );
515     }
516     return xAlt;
519 /// @throws Exception
520 static Reference< XInterface > MacSpellChecker_CreateInstance(
521             const Reference< XMultiServiceFactory > & /*rSMgr*/ )
524     Reference< XInterface > xService = static_cast<cppu::OWeakObject*>(new MacSpellChecker);
525     return xService;
529 sal_Bool SAL_CALL
530     MacSpellChecker::addLinguServiceEventListener(
531             const Reference< XLinguServiceEventListener >& rxLstnr )
533     MutexGuard  aGuard( GetLinguMutex() );
535     bool bRes = false;
536     if (!bDisposing && rxLstnr.is())
537     {
538         bRes = GetPropHelper().addLinguServiceEventListener( rxLstnr );
539     }
540     return bRes;
544 sal_Bool SAL_CALL
545     MacSpellChecker::removeLinguServiceEventListener(
546             const Reference< XLinguServiceEventListener >& rxLstnr )
548     MutexGuard  aGuard( GetLinguMutex() );
550     bool bRes = false;
551     if (!bDisposing && rxLstnr.is())
552     {
553         DBG_ASSERT( xPropHelper.is(), "xPropHelper non existent" );
554         bRes = GetPropHelper().removeLinguServiceEventListener( rxLstnr );
555     }
556     return bRes;
560 OUString SAL_CALL
561     MacSpellChecker::getServiceDisplayName( const Locale& /*rLocale*/ )
563     MutexGuard  aGuard( GetLinguMutex() );
564     return OUString( "macOS Spell Checker" );
568 void SAL_CALL
569     MacSpellChecker::initialize( const Sequence< Any >& rArguments )
571     MutexGuard  aGuard( GetLinguMutex() );
573     if (!pPropHelper)
574     {
575         sal_Int32 nLen = rArguments.getLength();
576         if (2 == nLen)
577         {
578             Reference< XLinguProperties >   xPropSet;
579             rArguments.getConstArray()[0] >>= xPropSet;
580             //rArguments.getConstArray()[1] >>= xDicList;
582             //! Pointer allows for access of the non-UNO functions.
583             //! And the reference to the UNO-functions while increasing
584             //! the ref-count and will implicitly free the memory
585             //! when the object is no longer used.
586             pPropHelper = new PropertyHelper_Spell( static_cast<XSpellChecker *>(this), xPropSet );
587             xPropHelper = pPropHelper;
588             pPropHelper->AddAsPropListener();   //! after a reference is established
589         }
590         else
591             OSL_FAIL( "wrong number of arguments in sequence" );
593     }
597 void SAL_CALL
598     MacSpellChecker::dispose()
600     MutexGuard  aGuard( GetLinguMutex() );
602     if (!bDisposing)
603     {
604         bDisposing = true;
605         EventObject aEvtObj( static_cast<XSpellChecker *>(this) );
606         aEvtListeners.disposeAndClear( aEvtObj );
607     }
611 void SAL_CALL
612     MacSpellChecker::addEventListener( const Reference< XEventListener >& rxListener )
614     MutexGuard  aGuard( GetLinguMutex() );
616     if (!bDisposing && rxListener.is())
617         aEvtListeners.addInterface( rxListener );
621 void SAL_CALL
622     MacSpellChecker::removeEventListener( const Reference< XEventListener >& rxListener )
624     MutexGuard  aGuard( GetLinguMutex() );
626     if (!bDisposing && rxListener.is())
627         aEvtListeners.removeInterface( rxListener );
630 // Service specific part
631 OUString SAL_CALL MacSpellChecker::getImplementationName()
633     return getImplementationName_Static();
636 sal_Bool SAL_CALL MacSpellChecker::supportsService( const OUString& ServiceName )
638     return cppu::supportsService(this, ServiceName);
641 Sequence< OUString > SAL_CALL MacSpellChecker::getSupportedServiceNames()
643     return getSupportedServiceNames_Static();
646 Sequence< OUString > MacSpellChecker::getSupportedServiceNames_Static()
647         throw()
649     Sequence< OUString > aSNS { SN_SPELLCHECKER };
650     return aSNS;
653 extern "C"
656 SAL_DLLPUBLIC_EXPORT void * MacOSXSpell_component_getFactory(
657     const sal_Char * pImplName, void * pServiceManager, void * /*pRegistryKey*/ )
659     void * pRet = nullptr;
660     if ( MacSpellChecker::getImplementationName_Static().equalsAscii( pImplName ) )
661     {
662         Reference< XSingleServiceFactory > xFactory =
663             cppu::createOneInstanceFactory(
664                 static_cast< XMultiServiceFactory * >( pServiceManager ),
665                 MacSpellChecker::getImplementationName_Static(),
666                 MacSpellChecker_CreateInstance,
667                 MacSpellChecker::getSupportedServiceNames_Static());
668         // acquire, because we return an interface pointer instead of a reference
669         xFactory->acquire();
670         pRet = xFactory.get();
671     }
672     return pRet;
679 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */