remove useless wxMax(), an unsigned value is never less than 0

This commit is contained in:
Paul Cornett 2016-01-16 10:59:02 -08:00
parent 56701052eb
commit e5e3f6fffa

View File

@ -106,7 +106,7 @@ public:
"plus %zu more visible items out of %zu total",
top_part_end,
count - bottom_part_start,
wxMax(0, last_visible - first_visible),
last_visible - first_visible,
count);
}
}