From c60fdf109150312c1ba5e749aff6196f098b2752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Wed, 17 Aug 2022 14:43:52 +0200 Subject: Add FileView::Initialized constructor. --- c/datalistview.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c/datalistview.cpp') diff --git a/c/datalistview.cpp b/c/datalistview.cpp index 9b3de7a..6d3d79c 100644 --- a/c/datalistview.cpp +++ b/c/datalistview.cpp @@ -29,8 +29,8 @@ DataListView::DataListView(const HWND hWndParent) lvc.cx = 500; ListView_InsertColumn(hWnd, DLVSIVALUE, &lvc); - extern FileView g_fvCfg; - m_height = g_fvCfg.At(0).heightDlv; + extern CfgA& g_cfg; + m_height = g_cfg.heightDlv; } int DataListView::Height() -- cgit v1.2.3