Abdelrazak Younes wrote:
Jean-Marc Lasgouttes wrote:+ CoordCache::InnerParPosCache const & const parPos = theCoords.parPos()[text];But parPos is modified in the loop so cannot be const.- Paragraph & par = text->getPar(pit); + Paragraph const & const par = text->getPar(pit);Same here.
Nope, par is not modified so I will change that to this: + Paragraph const & par = text->getPar(pit); Abdel.