Fix size_t issue.

This commit is contained in:
Stephen Anthony 2019-12-28 22:44:26 -03:30
parent 0c6f8bf381
commit bc75a2ee83
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ DelayQueueWidget::DelayQueueWidget(
_textcolor = kTextColor;
_w = 20 * font.getMaxCharWidth() + 6;
_h = myLines.size() * font.getLineHeight() + 6;
_h = static_cast<int>(myLines.size() * font.getLineHeight() + 6);
for (auto&& line : myLines) line = "";
}