RE: How to disable clicking parent menu item without disabling it?

2011-12-26 Thread Dany Golubitsky
Thank you! It seems to work. Action was not set to anything, I just needed to set it for 0 in items having submenu. Regards. -Original Message- From: Keary Suska [mailto:cocoa-...@esoteritech.com] Sent: Monday, December 26, 2011 18:00 To: Dany Golubitsky Cc: Cocoa-Dev List Subject: Re

Re: what is at table's "index row limit" in the nib editor?

2011-12-26 Thread Kyle Sluder
On Dec 26, 2011, at 5:11 PM, Matt Neuburg wrote: > > On Dec 26, 2011, at 5:10 PM, Roland King wrote: > >> Is it sectionIndexMinimumDisplayRowCount? > > Yes, I think it must be - I was just coming to the same conjecture myself. > Thx! m. Not at my Mac right now so I can't check, but within re

Re: Crash Reporter lies. Was: Interpreting Call Stack…

2011-12-26 Thread Kyle Sluder
On Dec 26, 2011, at 6:22 PM, Jerry Krinock wrote: > Now, I've been symbolicating crash reports for years, but I do so when I see > a line in a crash report like this: > > 8 MyFramework 0x000c5c49 0x7000 + 781385 > > where you see the symbol name is missing. The reason I did not think to

Times to not add a document to NSDocumentController?

2011-12-26 Thread Rick Mann
I'm working on a CAD app that has a library of parts that can be added to a document. Internally, I have a LibraryDoc to open library files, and present the library UI windows. But I don't really want it to behave like a "regular" document in my app. Would it be appropriate to NOT add it to the

Re: Crash Reporter lies. Was: Interpreting Call Stack…

2011-12-26 Thread Jerry Krinock
Thank you, Ken. You are correct, as usual. Upon symbolicating, I found the actual problem. Now, I've been symbolicating crash reports for years, but I do so when I see a line in a crash report like this: 8 MyFramework 0x000c5c49 0x7000 + 781385 where you see the symbol name is missing. T

Re: Interpreting Call Stack when Crash occurs in Inline Function

2011-12-26 Thread Ken Thomases
On Dec 26, 2011, at 4:31 PM, Jerry Krinock wrote: > If you declare a C function as inline, and this function invokes other > functions, does this function appear to invoke itself in the call stack of a > crash report? > > See lines 5-8, in this call stack. 'MyFunction' is declared 'inline' and

Interpreting Call Stack when Crash occurs in Inline Function

2011-12-26 Thread Jerry Krinock
If you declare a C function as inline, and this function invokes other functions, does this function appear to invoke itself in the call stack of a crash report? See lines 5-8, in this call stack. 'MyFunction' is declared 'inline' and does not call itself. Application Specific Information: **

Re: How to disable clicking parent menu item without disabling it?

2011-12-26 Thread Keary Suska
On Dec 26, 2011, at 8:39 AM, Dany Golubitsky wrote: > I want to disable some of parent top menu links with sub-menus, so that when > I click at the root top nothing should happen until I navigate and click to > its sub menus for specific action. > > For example, In Cocoa, if I have menu File ->

How to disable clicking parent menu item without disabling it?

2011-12-26 Thread Dany Golubitsky
I want to disable some of parent top menu links with sub-menus, so that when I click at the root top nothing should happen until I navigate and click to its sub menus for specific action. For example, In Cocoa, if I have menu File -> Recent -> "...Recent files list" , I can press "Recent".