bytesized
bytesized
I followed the build instructions, and afterwards it says that every schema file has been modified. But the only changes seem to be that the line endings are now all...
CCK2 overrides the ` ContentLinkHandler.onLinkAdded` function here: https://github.com/mkaply/cck2wizard/blob/6884163b91a67da0cea467d72c9c1bb179eb19c6/cck2/modules/CCK2.jsm#L802 That function has changed names (and maybe implementations?) since then. It is now called `ContentLinkHandler.onLinkEvent`. https://searchfox.org/mozilla-central/rev/d2b4b40901c15614fad2fa34718eea428774306e/browser/modules/ContentLinkHandler.jsm#285 I assume that this feature of...
Coming from `C++` COM, where very simple COM usage looks like ``` IFoo* foo; HRESULT hr = CoCreateInstance(rclsid, pUnkOuter, dwClsContext, riid, (void**) &foo); if (SUCCEEDED(hr)) { // do something with...