From: Enrico Forestieri Date: Fri, 8 May 2015 12:15:38 +0000 (+0200) Subject: Fix compilation after e93444e7 X-Git-Tag: 2.2.0alpha1~883 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bc8717b297e0b3001ccaf5146ba5ec945c77ad42;p=features.git 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 d556cfa07e..1b7c33dcd2 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); } }