Re: Finding which window is causing the "NSWindow does not support utility styleMask 0x10" error

2010-05-14 Thread Gideon King
Found it - find . -name "*xib" -print -exec grep NSWindowStyleMask {} \; was my friend. Gideon ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at co

Re: Finding which window is causing the "NSWindow does not support utility styleMask 0x10" error

2010-05-14 Thread Andy Lee
Just a guess -- I'm looking at a xib file and I see this line: 15 Maybe you could grep your xib's for NSWindowStyleMask, look at the output, and AND the values with 0x10. --Andy On May 14, 2010, at 7:29 AM, Gideon King wrote: > I obviously have the utility style mask set on a window somew

Finding which window is causing the "NSWindow does not support utility styleMask 0x10" error

2010-05-14 Thread Gideon King
I obviously have the utility style mask set on a window somewhere in one of my nibs, but I have 40 nibs in my project and it would take ages to go through every one of the windows in every nib to find the culprit. Is there some way I can search in my xib files, or set a breakpoint in my code so

Re: NSWindow does not support utility styleMask 0x10 ???

2008-06-06 Thread Keary Suska
6/6/08 9:05 AM, also sprach [EMAIL PROTECTED]: > Yes, I do see this input. Since way back when I did create this NSWindow > with IB 2.x, I went to the trouble of starting over with a new NSWindow and > I still get the same set utility mask error in my NSLog window. Also, > what's really wierd wh

Re: NSWindow does not support utility styleMask 0x10 ???

2008-06-06 Thread Andrew Merenbach
who could find something else that obviously I have missed. As an aside, this "nswindow does not support utility stylemask 0x10" log entry appears twice ?? Best of regards, John Love ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Re: NSWindow does not support utility styleMask 0x10 ???

2008-06-06 Thread John Love
inates the problem ... but, because I am very human, I could have missed something. I would be indebted to anyone who could find something else that obviously I have missed. As an aside, this "nswindow does not support utility stylemask 0x10" log entry appears twice ?? Best of

Re: NSWindow does not support utility styleMask 0x10 ???

2008-06-05 Thread Keary Suska
6/5/08 4:33 PM, also sprach [EMAIL PROTECTED]: > This error appears when a window shows in my document-based app via > MyDocument's -windowDidLoadNib method. > > any clues about this mystery ??? Here's a clue: http://lists.apple.com/archives/Cocoa-dev/2007/Nov/msg02233.html Per the pos

NSWindow does not support utility styleMask 0x10 ???

2008-06-05 Thread John Love
This error appears when a window shows in my document-based app via MyDocument's -windowDidLoadNib method. any clues about this mystery ??? ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comme