Re: [Pythonmac-SIG] disableRelaunchOnLogin and PyObjC

2011-10-18 Thread Ronald Oussoren
On 6 Oct, 2011, at 19:07, Mel Walker wrote: > I have a utility application that should not be relaunched on login, so I > figure I'd better call [NSApp -disableRelaunchOnLogin] in the code, as > recommended for 10.7. The problem I'm having is that the code runs back to > 10.5. In Objective-C I

[Pythonmac-SIG] disableRelaunchOnLogin and PyObjC

2011-10-16 Thread Mel Walker
I have a utility application that should not be relaunched on login, so I figure I'd better call [NSApp -disableRelaunchOnLogin] in the code, as recommended for 10.7. The problem I'm having is that the code runs back to 10.5. In Objective-C I would just call respondsToSelector:, but I'm having