remove useless wxMax(), an unsigned value is never less than 0
This commit is contained in:
parent
56701052eb
commit
e5e3f6fffa
@ -106,7 +106,7 @@ public:
|
|||||||
"plus %zu more visible items out of %zu total",
|
"plus %zu more visible items out of %zu total",
|
||||||
top_part_end,
|
top_part_end,
|
||||||
count - bottom_part_start,
|
count - bottom_part_start,
|
||||||
wxMax(0, last_visible - first_visible),
|
last_visible - first_visible,
|
||||||
count);
|
count);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user