| 236 | } |
| 237 | |
| 238 | void CLogView::UpdateColumnInfo() |
| 239 | { |
| 240 | int count = GetHeader().GetItemCount(); |
| 241 | for (int i = 0; i < count; ++i) |
| 242 | { |
| 243 | auto& column = m_columns[SubItemToColumn(i)].column; |
| 244 | auto column2 = column; |
| 245 | column2.mask = LVCF_WIDTH | LVCF_ORDER; |
| 246 | GetColumn(i, &column2); |
| 247 | column.cx = column2.cx; |
| 248 | column.iOrder = column2.iOrder; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | void CLogView::UpdateColumns() |
| 253 | { |
nothing calls this directly
no outgoing calls
no test coverage detected