aboutsummaryrefslogtreecommitdiff
path: root/c/defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/defs.h')
-rw-r--r--c/defs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/c/defs.h b/c/defs.h
index 2fa2f06..14066a9 100644
--- a/c/defs.h
+++ b/c/defs.h
@@ -17,7 +17,7 @@ protected:
WNDPROC m_prevProc;
HWND m_hWnd;
public:
- void Create(HMENU, DWORD);
+ ListView(HMENU, DWORD);
int Height(int);
HWND HWnd(void) const;
virtual void UpdateTheme(BOOL);
@@ -25,12 +25,12 @@ public:
};
/* episodelistview.cpp */
-class EpisodeListView: public ListView {
+class EpisodeListView : public ListView {
private:
int m_iSort;
LVITEM m_lviFocus;
public:
- void Create(void);
+ EpisodeListView(void);
void DoSort(void);
void EnsureFocusVisible(void);
LRESULT HandleNotify(LPARAM);
@@ -47,9 +47,9 @@ public:
};
/* datalistview.cpp */
-class DataListView: public ListView {
+class DataListView : public ListView {
public:
- void Create(void);
+ DataListView(void);
void ShowEpisode(int);
};