diff options
Diffstat (limited to 'c/listview.h')
-rw-r--r-- | c/listview.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/c/listview.h b/c/listview.h index c812cd8..1de6cc1 100644 --- a/c/listview.h +++ b/c/listview.h @@ -10,12 +10,11 @@ struct ListView ListView(HWND hWndParent, HMENU hMenu, DWORD dwStyle); bool FindNextItem(LVITEM* lvi, LPARAM lParam); - virtual int Height(int bHeader = -1); + virtual int Height(); virtual void ResizeColumns(int w); virtual void UpdateTheme(BOOL bThemeActive); virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); protected: - int m_bHeader = 1; WNDPROC m_proc0; HWND m_hWndParent; }; |