In my OS X application, I am getting a warning(below) in the console when my web view loads certain webpages, but all webpages do not generate this warning on load, which seems strange to me, as it seems like the contents of the web view should have no bearing on what methods are called.
I do not explicitly call this method in my code.
WARNING: Method convertPointToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
So at some point the NSView method convertPointToBase is being called, but what could cause this to be called if I do not call it explicitly in my code.? Could auto layout be calling this method...?