Re: Quartz problem (glext bug)

2014-02-01 Thread Pax
Damn Google! Always with the wrong answer ;-) Thanks for this. With your sage advice, I've located the problem. On 1 Feb 2014, at 20:30, Greg Parker wrote: > On Feb 1, 2014, at 11:56 AM, Pax <45rpmli...@googlemail.com> wrote: >> I've got a problem when I include the Quartz framework. Doing s

Re: Quartz problem (glext bug)

2014-02-01 Thread Greg Parker
On Feb 1, 2014, at 11:56 AM, Pax <45rpmli...@googlemail.com> wrote: > I've got a problem when I include the Quartz framework. Doing so, without > altering a single line of my code, causes the following error to be raised > when I attempt to compile: > > /Applications/Xcode.app/Contents/Develope

Quartz problem (glext bug)

2014-02-01 Thread Pax
I've got a problem when I include the Quartz framework. Doing so, without altering a single line of my code, causes the following error to be raised when I attempt to compile: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.9.sdk/System/Library/Frame

Re: NSArrayController - Remove and immediately deallocate objects

2014-02-01 Thread Jerry Krinock
On 2014 Feb 01, at 10:50, Leonardo wrote: > The objects get properly removed but they don't get deallocated immediately. This is not an issue with the array controller. It is an issue with memory management in general. First of all, I presume that you have a good reason (such as that the obj

NSArrayController - Remove and immediately deallocate objects

2014-02-01 Thread Leonardo
Hi, I have created an NSArrayController on IB. During the runtime, I remove all the objects from this NSArrayController. The objects get properly removed but they don't get deallocated immediately. Not even if I use a pool like that: NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] i

Re: How to display NSStrokeColorAttributeName on the NSColorPanel

2014-02-01 Thread Leonardo
Hi Mike, sure, the value of oStrokeColorWell is different than the forecolor. Let's say I have the string "ocean" within the NSTextView. Its forecolor is black, while the stroke color is red. I click between the "c" and the "e". The oForeColorWell properly displays the black color and the oStrokeC

Re: Legal Opinion on GCUndoManager

2014-02-01 Thread Uli Kusterer
On 01 Feb 2014, at 01:02, Graham Cox wrote: > On 1 Feb 2014, at 4:32 am, Fritz Anderson wrote: >> If I were implementing the review process, my automated checker would run >> strings(1) on the binary, and flag the collision with private API. Under my >> notional process, the reviewer would have

How to display NSStrokeColorAttributeName on the NSColorPanel

2014-02-01 Thread Leonardo
When my 1st NSColorWell is active and I change the selection in my NSTextView, both NSColorWell and NSColorPanel display the foreColor of the selected tex. That's fine. Now I have a second NSColorWell that should display the strokeColor (or any other color) of the selected text. But I can't yet su