On 01/10/2015 08:20 PM, Uwe Stöhr wrote:
Hello JMarc,
after your merge I get these 2 compilation warnings:
..\..\src\RowPainter.cpp(448): warning C4244: 'Argument': conversion
of 'float' to 'int', possible dataloss
..\..\src\RowPainter.cpp(450): warning C4244: 'Initialisation':
conversion of 'float' to 'const int'
(I am wondering that only MSVC outputs these warnings.)
A lot of compilers will see these, but they are mostly harmless. These
are just implicit conversions of floats to ints, which will lead to
rounding errors. They should be fixed, so only "real" warnings appear,
but they won't cause problems.
JMarc, does dotted_line_thickness_ need to be a float?
Richard