From: Vincent van Ravesteijn Date: Wed, 13 Oct 2010 20:18:16 +0000 (+0000) Subject: Rowpainter.cpp: Squeeze warning. X-Git-Tag: 2.0.0~2388 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=824780b8a96a3952a3d91abffde1ba87f3e6d6c5;p=features.git Rowpainter.cpp: Squeeze warning. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35643 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/rowpainter.cpp b/src/rowpainter.cpp index 23ded2cd84..080ef43f64 100644 --- a/src/rowpainter.cpp +++ b/src/rowpainter.cpp @@ -347,7 +347,7 @@ void RowPainter::paintMisspelledMark(double orig_x, int desc, bool changed) // derive the offset from zoom factor specified by user in percent // if changed the misspelled marker gets placed slightly lower than normal // to avoid drawing at the same vertical offset - int const offset = (1.5 * lyxrc.zoom / 100.0); // [percent] + int const offset = int(1.5 * lyxrc.zoom / 100.0); // [percent] int const y = yo_ + desc + (changed ? offset : 0); pi_.pain.line(int(orig_x), y, int(x_), y, Color_red, Painter::line_onoffdash, 1.0); }