MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / UpdateColumnInfo

Method UpdateColumnInfo

DebugView++/LogView.cpp:238–250  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

236}
237
238void 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
252void CLogView::UpdateColumns()
253{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected