On 2 Jun 2012, at 06:37, Germán A. Arias wrote: > El vie, 25-05-2012 a las 00:22 -0600, Germán A. Arias escribió: >> 2012-05-24 23:42:58.464 GSspell[3455] Spell server started and waiting. >> 2012-05-24 23:42:58.514 Ink[3381] Set proxy >> 2012-05-24 23:43:02.171 GSspell[3455] Call to delegate caused the >> following exception: Tried to add nil to array >> > > Well, I found the problem with the Spanish spellchecker. This is caused > by the NSString class method - :. If the argument is > a const char that contains letters like "áéñ", this method return "nil".
When that method returns nil, it means that the argument is not a UTF8 string. So the problem is not caused by the +stringWithUTF8String: method ... it's caused by whatever is supplying the argument. So the next questions you need to ask are: What is *actually* being supplied as the argument?. What is producing that argument? Why is the code that's providing the argument not providing a UTF8 string? _______________________________________________ Gnustep-dev mailing list [email protected] https://lists.gnu.org/mailman/listinfo/gnustep-dev
