Fix Qwt integer comparison warning

This commit is contained in:
Alex Spataru 2021-11-05 03:08:37 -06:00
parent 95f766bb4f
commit 728234db87

View File

@ -390,7 +390,7 @@ void QwtPlotMultiBarChart::drawSeries(QPainter* painter,
painter->save();
for ( int i = from; i <= to; i++ )
for ( size_t i = from; i <= to; i++ )
{
drawSample( painter, xMap, yMap,
canvasRect, interval, i, sample( i ) );