Re: NSSpellChecker exception

2014-08-19 Thread Martin Wierschin
Thanks, so they can be safely ignored. Does that also apply to similar exceptions (much rarely reported) related to DO and coming from: -[IMKInputSession activate] (in HIToolbox) resulting in NSPortTimeoutException: connection timeout: did not receive reply ... I can't speak with

NSSpellChecker exception

2014-08-12 Thread Dragan Milić
I'm getting exception reports from users of an application I'm working on that I cannot reproduce. The exception comes from the NSSpellChecker instance, and the trace looks something like this: NSObjectInaccessibleException NSDistantObject (0x62279bc0) is invalid (no connection)

Re: NSSpellChecker exception

2014-08-12 Thread Douglas Davidson
NSSpellChecker uses DO to connect with the spellchecker process. It properly handles any exceptions that may result, so these exceptions would be caught and handled and you do not need to be reporting them. Douglas Davidson On Aug 12, 2014, at 5:22 PM, Dragan Milić mi...@mac.com wrote: I'm

Re: NSSpellChecker exception

2014-08-12 Thread Dragan Milić
On sre 13.08.2014., at 02.30, Douglas Davidson wrote: NSSpellChecker uses DO to connect with the spellchecker process. It properly handles any exceptions that may result, so these exceptions would be caught and handled and you do not need to be reporting them. Thanks, so they can be safely