Andre Poenitz wrote:
On Thu, Mar 06, 2008 at 10:06:25PM -0000, [EMAIL PROTECTED] wrote:
///
void validate(LaTeXFeatures & features,
- Layout const & layout) const;
+ Layout const * layout) const;
Why did youhva e to change this signature?
void Paragraph::validate(LaTeXFeatures & features) const
{
- d->validate(features, d->layout());
+ d->validate(features, d->layout_);
d->validate(features, *d->layout_);
would have worked as well...
Probably a side-effect of other things I was trying. I'll change it back.
rh