Reduce use of unsigned integers when signed will do fine.

This commit is contained in:
Jared Boone 2016-01-23 17:53:16 -08:00
parent ce481c0b5a
commit 14f18d5cf7
10 changed files with 59 additions and 58 deletions

View file

@ -262,7 +262,7 @@ Rect AISRecentEntryDetailView::draw_field(
const std::string& label,
const std::string& value
) {
const size_t label_length_max = 4;
const int label_length_max = 4;
painter.draw_string(Point { draw_rect.left(), draw_rect.top() }, style, label);