Re: crash in outlineView:isGroupItem:

2008-06-09 Thread Kyle Sluder
On Mon, Jun 9, 2008 at 12:21 PM, carbonat <[EMAIL PROTECTED]> wrote: > Cobin, I have already posted it in the bug reporter page, but I didn't hear > of the radar number. What is > it? Log in to the bug reporter (a.k.a. Radar) and look in the leftmost column of the "Open" tab of the "My Originated

Re: crash in outlineView:isGroupItem:

2008-06-09 Thread carbonat
El 09/06/2008, a las 18:00, Corbin Dunn escribió: Please log this as a bug, and include the radar number in the post (even if you can't open them, it is useful for Apple engineers). -corbin Thanks for posting this. I found an even simpler example app that will crash. You can downloa

Re: crash in outlineView:isGroupItem:

2008-06-09 Thread Corbin Dunn
Please log this as a bug, and include the radar number in the post (even if you can't open them, it is useful for Apple engineers). -corbin Thanks for posting this. I found an even simpler example app that will crash. You can download it at: http://developer.apple.com/samplecode/Abstract

Re: crash in outlineView:isGroupItem:

2008-06-09 Thread carbonat
El 09/06/2008, a las 3:06, Nathan Kinsinger escribió: On Jun 8, 2008, at 4:02 PM, Joan Lluch (casa) wrote: Ok, I did it. This is now a confirmed bug. To reproduce it: Modify the OutlineEdit example as follows: 1- In IB add set the "highlight" property of the outlineView to "Source List"

Re: crash in outlineView:isGroupItem:

2008-06-08 Thread Nathan Kinsinger
On Jun 8, 2008, at 4:02 PM, Joan Lluch (casa) wrote: Ok, I did it. This is now a confirmed bug. To reproduce it: Modify the OutlineEdit example as follows: 1- In IB add set the "highlight" property of the outlineView to "Source List" 2- In IB set the delegate of the outlineView to the "ow

crash in outlineView:isGroupItem:

2008-06-08 Thread casa
I am using outlineView:isGroupItem delegate method to create an NSOutlineView that mimics the look of Mail.app or iTunes - (BOOL)outlineView:(NSOutlineView *)sender isGroupItem:(id)item { return ( item && [[item representedObject] isKindOfClass: [GroupNode class]] ) ; } My oulineView

crash in outlineView:isGroupItem:

2008-06-08 Thread casa
I am using outlineView:isGroupItem delegate method to create an NSOutlineView that mimics the look of Mail.app or iTunes - (BOOL)outlineView:(NSOutlineView *)sender isGroupItem:(id)item { return ( item && [[item representedObject] isKindOfClass: [GroupNode class]] ) ; } My oulineVi

Re: crash in outlineView:isGroupItem:

2008-06-08 Thread Joan Lluch (casa)
El 08/06/2008, a las 22:11, Kyle Sluder escribió: On Sun, Jun 8, 2008 at 1:37 PM, Joan Lluch (casa) <[EMAIL PROTECTED]> wrote: return ( item && [[item representedObject] isKindOfClass:[GroupNode class]] ) ; Style note: you don't need to do this. [[item representedObject] isKindOfClass:[G

Re: crash in outlineView:isGroupItem:

2008-06-08 Thread Kyle Sluder
On Sun, Jun 8, 2008 at 1:37 PM, Joan Lluch (casa) <[EMAIL PROTECTED]> wrote: >return ( item && [[item representedObject] isKindOfClass:[GroupNode > class]] ) ; Style note: you don't need to do this. [[item representedObject] isKindOfClass:[GroupNode class]] will work just fine, because messag

crash in outlineView:isGroupItem:

2008-06-08 Thread Joan Lluch (casa)
I am using outlineView:isGroupItem delegate method to create an NSOutlineView that mimics the look of Mail.app or iTunes - (BOOL)outlineView:(NSOutlineView *)sender isGroupItem:(id)item { return ( item && [[item representedObject] isKindOfClass: [GroupNode class]] ) ; } My oulin