On 11/02/2008 08:54 PM, [EMAIL PROTECTED] wrote:
inDOMUtils domUtils;
This looks bad. You're using reference counted object as a stack object.
That is almost always evil.
DOMUtils is a service and you should use it a as a service.
nsCOMPtr<inIDOMUtils> domUtils =
do_GetService("@mozilla.org/inspector/dom-utils;1");
Maybe that fixes the problem. Maybe.
_______________________________________________
dev-tech-layout mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-tech-layout

