aboutsummaryrefslogtreecommitdiff
path: root/c/episodelistview.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-18 01:52:32 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-18 01:52:32 +0200
commita9a4938f87cb3ce2a0214d45925bcdb4ba8d2a28 (patch)
treeff48d053aba1b93dc0771ed20b99d7e0211dd101 /c/episodelistview.h
parent5f92d1e00e12085bedc86c6274b254589053c411 (diff)
downloadEpisodeBrowser-a9a4938f87cb3ce2a0214d45925bcdb4ba8d2a28.tar.gz
Move file views out of EpisodeListView and DataListView.
Diffstat (limited to 'c/episodelistview.h')
-rw-r--r--c/episodelistview.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/c/episodelistview.h b/c/episodelistview.h
index f94803c..e6f2858 100644
--- a/c/episodelistview.h
+++ b/c/episodelistview.h
@@ -12,8 +12,6 @@
#define ELVSITITLE 1
#define ELVSIRATING 2
-extern CfgA& g_cfg;
-
struct EpisodeListView : public ListView
{
EpisodeListView(HWND hWndParent);
@@ -35,7 +33,6 @@ struct EpisodeListView : public ListView
private:
signed char m_iSortCol;
static int CALLBACK SortProc(LPARAM lParam1, LPARAM lParam2, LPARAM extra);
- FileView<ElvDataA> m_fv{L"elvdata.dat", g_cfg.cEp+128u};
};
#endif