aboutsummaryrefslogtreecommitdiff
path: root/c/episodelistview.h
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-08-16 16:09:51 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-08-16 16:09:51 +0200
commit8351d4c42c76584415e02a40d41f497a8f042c72 (patch)
tree6df66783c16130f943c78a8e09d6dfa2ef0359fe /c/episodelistview.h
parentab621173afc918797a4ea68b5d6ceee7cc043f72 (diff)
downloadEpisodeBrowser-8351d4c42c76584415e02a40d41f497a8f042c72.tar.gz
EpisodeListView: Use FileView consistently.
Diffstat (limited to 'c/episodelistview.h')
-rw-r--r--c/episodelistview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/episodelistview.h b/c/episodelistview.h
index 0fcf444..0604d15 100644
--- a/c/episodelistview.h
+++ b/c/episodelistview.h
@@ -16,6 +16,7 @@ struct EpisodeListView : public ListView
{
EpisodeListView(HWND hWndParent);
void EnsureFocusVisible();
+ void HandleContextMenu(WORD);
LRESULT HandleNotify(LPARAM lParam);
void Redraw();
void ResizeColumns(int w) override;
@@ -32,7 +33,7 @@ struct EpisodeListView : public ListView
private:
int m_iSortCol;
static int CALLBACK SortProc(LPARAM lParam1, LPARAM lParam2, LPARAM extra);
- std::vector<ElvDataA> m_vData;
+ FileView m_fv;
};
#endif