aboutsummaryrefslogtreecommitdiff
path: root/c/datalistview.cpp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-17 14:43:52 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-17 14:43:52 +0200
commitc60fdf109150312c1ba5e749aff6196f098b2752 (patch)
tree8452b421ff2b4f2e86d4b11b6b906c6fbbe4a656 /c/datalistview.cpp
parent1d041ad5b123e4ecbe69dfa621349f6be9b933d6 (diff)
downloadEpisodeBrowser-c60fdf109150312c1ba5e749aff6196f098b2752.tar.gz
Add FileView::Initialized constructor.
Diffstat (limited to 'c/datalistview.cpp')
-rw-r--r--c/datalistview.cpp4
1 files changed, 2 insertions, 2 deletions
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<CfgA> g_fvCfg;
- m_height = g_fvCfg.At(0).heightDlv;
+ extern CfgA& g_cfg;
+ m_height = g_cfg.heightDlv;
}
int DataListView::Height()