| 280 | } |
| 281 | |
| 282 | int CBarGraph::GetItemValue(CPoint point) const { |
| 283 | int ItemHeight = GetItemHeight(); |
| 284 | return items_ - (((int)point.y - GetItemTop() + ItemHeight / 2) / ItemHeight); |
| 285 | } |
| 286 | |
| 287 | int CBarGraph::GetMinItemValue() const { |
| 288 | return 0; |
nothing calls this directly
no test coverage detected