Re: NSTableView's delegate dataCellForTableColumn never called

2009-08-27 Thread Donnie Lee
Thanks Corbin, now I fully understand. Donnie. On Thu, Aug 27, 2009 at 8:41 PM, Corbin Dunn wrote: > Donnie - the problem is, people can run FireFox on 10.4, where the method > doesn't exist, and hence it wouldn't work. > > If you rebuild Firefox to target 10.5 or higher, then the method will be

Re: NSTableView's delegate dataCellForTableColumn never called

2009-08-27 Thread Corbin Dunn
Donnie - the problem is, people can run FireFox on 10.4, where the method doesn't exist, and hence it wouldn't work. If you rebuild Firefox to target 10.5 or higher, then the method will be called. --corbin On Aug 27, 2009, at 9:39 AM, Donnie Lee wrote: Hi Corbin, Do you mean that the

Re: NSTableView's delegate dataCellForTableColumn never called

2009-08-27 Thread Donnie Lee
Hi Corbin, Do you mean that the problem is in Firefox? Have you any ideas how to workaround this? Donnie. On Thu, Aug 27, 2009 at 8:34 PM, Corbin Dunn wrote: > The method only works for applications that link against 10.5 or higher. The > said app probably doesn't link against 10.5 > > -corbin >

Re: NSTableView's delegate dataCellForTableColumn never called

2009-08-27 Thread Corbin Dunn
The method only works for applications that link against 10.5 or higher. The said app probably doesn't link against 10.5 -corbin On Aug 27, 2009, at 8:08 AM, Donnie Lee wrote: Hello! I have a window with NSTableView in a bundle and load this bundle from dylib (which is a XPCOM component for

NSTableView's delegate dataCellForTableColumn never called

2009-08-27 Thread Donnie Lee
Hello! I have a window with NSTableView in a bundle and load this bundle from dylib (which is a XPCOM component for Firefox extension). But I have a big problem: dataCellForTableColumn delegate never called. All other delegates are called, but this -- not. When I try to load this bundle from simpl