Re: App fails on Yosemite - Cannot remove an observer

2014-12-01 Thread Andreas Höschler
Hi Jerry and all, You should look for … overrides of superclass properties Yes, indeed. Search for the AppKit Release Notes for OS X 10.10 Yosemite and carefully read the section on tab views, wherein Apple has added alot of new stuff, which may be stepping on your old stuff. Thanks!

Re: App fails on Yosemite - Cannot remove an observer

2014-12-01 Thread Quincey Morris
On Dec 1, 2014, at 10:41 , Andreas Höschler ahoe...@smartsoft.de wrote: What the heck does that mean? How can they remove these access methods? They didn’t. What they did is to change the access method declarations to @property declarations. The change shows up in the API changes as a

Re: App fails on Yosemite - Cannot remove an observer

2014-12-01 Thread Kyle Sluder
On Dec 1, 2014, at 10:41 AM, Andreas Höschler ahoe...@smartsoft.de wrote: Hi Jerry and all, You should look for … overrides of superclass properties Yes, indeed. Search for the AppKit Release Notes for OS X 10.10 Yosemite and carefully read the section on tab views, wherein Apple has

Re: App fails on Yosemite - Cannot remove an observer

2014-12-01 Thread Andreas Höschler
Hi Kyle, Adding #ifdef __APPLE__ - (void)setWindow:(NSWindow *)window { } #endif to my GSScrollView : NSScrollView subclass fixed (or at least worked around) the issue (no exception anymore and no apparent malfunction of the app). WOA. This is NOT the way to solve this

Re: App fails on Yosemite - Cannot remove an observer

2014-12-01 Thread Lee Ann Rucker
On Dec 1, 2014, at 1:08 PM, Andreas Höschler ahoe...@smartsoft.de wrote: Hi Kyle, Adding #ifdef __APPLE__ - (void)setWindow:(NSWindow *)window { } #endif to my GSScrollView : NSScrollView subclass fixed (or at least worked around) the issue (no exception anymore and no apparent

Re: App fails on Yosemite - Cannot remove an observer

2014-11-30 Thread Bill Cheeseman
On Nov 30, 2014, at 12:24 AM, Jerry Krinock je...@ieee.org wrote: Search for the AppKit Release Notes for OS X 10.10 Yosemite and carefully read the section on tab views, wherein Apple has added alot of new stuff, which may be stepping on your old stuff. Changing the subject, but isn't

App fails on Yosemite - Cannot remove an observer

2014-11-29 Thread Andreas Höschler
Hi all, we just tried one of our apps - doing fine on earlier versions of MacOSX - on Yosemite. When clicking on a tab of a NSTabView we get the following on the console and the app stops working (exception not caught): 29/11/14 21:21:23,496 SOSmartBrowser[731]: Cannot remove an observer

Re: App fails on Yosemite - Cannot remove an observer

2014-11-29 Thread Ken Thomases
On Nov 29, 2014, at 2:27 PM, Andreas Höschler ahoe...@smartsoft.de wrote: we just tried one of our apps - doing fine on earlier versions of MacOSX - on Yosemite. When clicking on a tab of a NSTabView we get the following on the console and the app stops working (exception not caught):

Re: App fails on Yosemite - Cannot remove an observer

2014-11-29 Thread Jerry Krinock
On 2014 Nov 29, at 17:26, Ken Thomases k...@codeweavers.com wrote: You should look for … overrides of superclass properties Yes, indeed. Search for the AppKit Release Notes for OS X 10.10 Yosemite and carefully read the section on tab views, wherein Apple has added alot of new stuff,