From: Uwe Stöhr Date: Sat, 2 Jul 2016 16:16:03 +0000 (+0200) Subject: InsetSeparator.cpp:backport a compiler warning fie X-Git-Tag: 2.2.1~72 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=534137a51749296f01c59ba023e74ea4c0bb3503;p=features.git InsetSeparator.cpp:backport a compiler warning fie ( 45e3a8f8/lyxgit) --- diff --git a/src/insets/InsetSeparator.cpp b/src/insets/InsetSeparator.cpp index a759f1f395..27aeb7c62b 100644 --- a/src/insets/InsetSeparator.cpp +++ b/src/insets/InsetSeparator.cpp @@ -210,7 +210,7 @@ void InsetSeparator::draw(PainterInfo & pi, int x, int y) const pi.pain.lines(xp, yp, 2, ColorName()); if (params_.kind == InsetSeparatorParams::PARBREAK) { - yp[0] += 0.25 * asc * 0.75; + yp[0] += int(0.25 * asc * 0.75); yp[1] = yp[0]; pi.pain.lines(xp, yp, 2, ColorName()); }