On Friday 2003-10-10 10:42 +0200, Mathieu CARTOIXA wrote: > I have embedded Mozilla 1.3.1 in my application, and I have to upgrade > to version 1.4. I downloaded the sources, compiled OK, but my app won't > compile any more, because I am using the nsCSSDeclaration class, but the > compiler is unable to find its declaration. > So I manually searched into mozilla/dist/include, and I found no trace > of a declaration. > I was able to find the file nsCSSDeclaration.h in the > mozilla/content/html/style/src directory, but this appears not to be in the > EXPORTS list of the Makefile (though it was in version 1.3.1). > > So my question is : should this be reported as a bug, or did I miss a > point somewhere ?
This file should not be exported. If you want to access CSS declarations, use the nsIDOMCSSStyleSheet, nsIDOMCSSStyleRule, and nsIDOMCSSDeclaration interfaces, which are frozen and intended to be used outside the layout library. -David -- L. David Baron <URL: http://dbaron.org/ > _______________________________________________ Mozilla-layout mailing list [EMAIL PROTECTED] http://mail.mozilla.org/listinfo/mozilla-layout
