aboutsummaryrefslogtreecommitdiff
path: root/c/listview.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/listview.h')
-rw-r--r--c/listview.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/listview.h b/c/listview.h
index 369c4ec..cf5dc26 100644
--- a/c/listview.h
+++ b/c/listview.h
@@ -5,7 +5,7 @@
struct ListView
{
- ListView(HMENU, DWORD);
+ ListView(HWND, HMENU, DWORD);
int Height(int = -1);
HWND HWnd(void) const;
virtual void UpdateTheme(BOOL);
@@ -14,6 +14,7 @@ protected:
int m_bHeader = 1;
WNDPROC m_prevProc;
HWND m_hWnd;
+ HWND m_hWndParent;
};
#endif