Am 08.05.2015 um 14:17 schrieb Enrico Forestieri <for...@lyx.org>: > commit bc8717b297e0b3001ccaf5146ba5ec945c77ad42 > Author: Enrico Forestieri <for...@lyx.org> > Date: Fri May 8 14:15:38 2015 +0200 > > Fix compilation after e93444e7 > > Stephan, please check whether RowPainter::paintMisspelledMark has > to be extended to use a third parameter, instead. > > diff --git a/src/RowPainter.cpp b/src/RowPainter.cpp > index d556cfa..1b7c33d 100644 > --- a/src/RowPainter.cpp > +++ b/src/RowPainter.cpp > @@ -331,7 +331,7 @@ void RowPainter::paintFromPos(pos_type & vpos, bool > changed) > new_word = par_.isSameSpellRange(pos, cpos) ; > } > if (!new_word && pi_.do_spellcheck) > - paintMisspelledMark(orig_x, changed, font); > + paintMisspelledMark(orig_x, changed); > } > } >
Sorry, the hunk was a mixture of my change and a patch from JMarc he sent to correct the thickness of the misspelled marker. I overlooked that and your change is the correct one, thanks. Stephan