From d9e1caa37e53c7dbc42b1fc652efc23a40c47c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Sun, 31 Jul 2022 19:56:53 +0200 Subject: Limit use of Hungarian notation. I don't hate Hungarian notation. It has some very nice qualities. But it also adds a lot of typing. That said, not using it feels a bit... unsafe. I might go back on this decision. We'll see. --- c/listview.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c/listview.h') diff --git a/c/listview.h b/c/listview.h index 858b156..84ad9d5 100644 --- a/c/listview.h +++ b/c/listview.h @@ -16,7 +16,7 @@ struct ListView virtual LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam); protected: int m_bHeader = 1; - WNDPROC m_prevProc; + WNDPROC m_proc0; HWND m_hWndParent; }; -- cgit v1.2.3