CVS commit by mutz: This code is interpreted differently depending on whether or not interfaces/htmlwriter.h was included before or after this file. That's bad, so fix it. Uncovered by my wrong fix of a --enable-final compile error. M +1 -1 bodypartformatter.h 1.3.2.1 --- kdepim/kmail/interfaces/bodypartformatter.h #1.3:1.3.2.1 @@ -62,5 +62,5 @@ namespace KMail { @return the result code (see above) */ - virtual Result format( BodyPart * part, HtmlWriter * writer ) const = 0; + virtual Result format( BodyPart * part, KMail::HtmlWriter * writer ) const = 0; };