On 07/08/2012, at 2:38 AM, Kevin Perry <kpe...@apple.com> wrote: > A stab in the dark: Have you tried running with OBJC_PRINT_REPLACED_METHODS > set? There's a small chance that you have code in your app or a library that > you're linking that replaces via category a method implementation internal to > AppKit that +underPageBackgroundColor relies on.
Bingo! You nailed it.... I have a category on NSColor that defines all the "named" SVG colours, and there's one called 'linenColor'. In 10.8, there appears to be a private method called +linenColor which is invoked by +underPageBackgroundColor, so it calls my SVG method and I get my sRGB "chino" colour. Removing that method it now works as expected. Thanks! I just need to figure a safer way to add my SVG named methods.... They aren't really used for supporting SVG because mostly SVG colours are looked up by parsing the name and using that to do a key-value lookup in a table. --Graham _______________________________________________ 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 cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com