| 228 | } |
| 229 | |
| 230 | Column::type CLogView::SubItemToColumn(int iSubItem) const |
| 231 | { |
| 232 | LVCOLUMN column; |
| 233 | column.mask = LVCF_SUBITEM; |
| 234 | GetColumn(iSubItem, &column); |
| 235 | return static_cast<Column::type>(column.iSubItem); |
| 236 | } |
| 237 | |
| 238 | void CLogView::UpdateColumnInfo() |
| 239 | { |
nothing calls this directly
no outgoing calls
no test coverage detected