Re: comboBoxSelectionDidChange not called

2013-12-31 Thread Scott Ribe
On Dec 30, 2013, at 2:39 PM, Quincey Morris quinceymor...@rivergatesoftware.com wrote: On Dec 30, 2013, at 13:06 , Scott Ribe scott_r...@elevated-dev.com wrote: Does anyone have any further suggestion for me??? The release notes for 10.6 say this: For apps linked on or after

Re: comboBoxSelectionDidChange not called

2013-12-30 Thread Scott Ribe
For future reference, this appears to have been fixed by: switching the base SDK to 10.7, building, switching it back to 10.6, and building. It seems highly unlikely that the few changes I made (all in unrelated code, getting rid of a few uses of QT graphics importers and 2 calls to

Re: comboBoxSelectionDidChange not called

2013-12-30 Thread Scott Ribe
On Dec 26, 2013, at 12:13 AM, Jerry Krinock je...@ieee.org wrote: Scott, I’ve never used this comboBoxSelectionDidChange:, but since you’ve mis-typed the method name twice now, I thought I should remind you that your implementation won’t be invoked unless its name ends in a colon. Thanks,

Re: comboBoxSelectionDidChange not called

2013-12-30 Thread Scott Ribe
My earlier post was wrong; switching base SKD back and forth did not fix it. What fixes it is building on 10.8 instead of 10.9. (When testing the SDK switch, after rebooting into 10.8, I was running under the debugger, which resulted in it being re-built.) So I've done a batch of clean builds

Re: comboBoxSelectionDidChange not called

2013-12-30 Thread Scott Ribe
On Dec 30, 2013, at 2:06 PM, Scott Ribe scott_r...@elevated-dev.com wrote: Some things I suppose I should note: - Xcode 5.0.2 - All software updates applied to all OSs. - I am using the same copy of Xcode under both 10.8 10.9. - I am not ignoring compiler warnings ;-) - There is nothing

Re: comboBoxSelectionDidChange not called

2013-12-30 Thread Quincey Morris
On Dec 30, 2013, at 13:06 , Scott Ribe scott_r...@elevated-dev.com wrote: Does anyone have any further suggestion for me??? The release notes for 10.6 say this: For apps linked on or after SnowLeopard, if a combo box is configured to send action on enter only, then it will not send its

Re: comboBoxSelectionDidChange not called

2013-12-25 Thread Jerry Krinock
Scott, I’ve never used this comboBoxSelectionDidChange:, but since you’ve mis-typed the method name twice now, I thought I should remind you that your implementation won’t be invoked unless its name ends in a colon. ___ Cocoa-dev mailing list

Re: comboBoxSelectionDidChange not called

2013-12-24 Thread Scott Ribe
On Dec 23, 2013, at 12:08 PM, Scott Ribe scott_r...@elevated-dev.com wrote: comboBoxSelectionDidChange in my delegate is not called when the user selects an item using the mouse. - The target action for a selection change *is* called. - Problem is 10.6 only, it is called as expected on

comboBoxSelectionDidChange not called

2013-12-23 Thread Scott Ribe
comboBoxSelectionDidChange in my delegate is not called when the user selects an item using the mouse. - The target action for a selection change *is* called. - Problem is 10.6 only, it is called as expected on 10.7/8/9. - It used to work, I changed the SDK to 10.6 from 1.4 and rebuilt in