mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix Visual C++ warnning
This commit is contained in:
parent
4162ed151c
commit
2215f4c2b4
@ -553,9 +553,9 @@ void RowPainter::paintLast() const
|
||||
}
|
||||
|
||||
if (endlabel == END_LABEL_BOX)
|
||||
pi_.pain.rectangle(xo_ + x, y, size, size, font.realColor());
|
||||
pi_.pain.rectangle(int(xo_) + x, y, size, size, font.realColor());
|
||||
else
|
||||
pi_.pain.fillRectangle(xo_ + x, y, size, size, font.realColor());
|
||||
pi_.pain.fillRectangle(int(xo_) + x, y, size, size, font.realColor());
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user