From 84c3dd3587e219caa80adc2070f0e9fe004c27bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Sat, 16 Jul 2022 01:00:20 +0200 Subject: Add m_hWndParent to ListView. This avoids g_hWnd. --- c/listview.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'c/listview.h') 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 -- cgit v1.2.3