Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-19 | Use static member function instead of friend function. | John Ankarström | |
2022-07-17 | Prefer f() over f(void). | John Ankarström | |
f(void) is a C-ism that is valid but unnecessary in C++. | |||
2022-07-17 | Make ListView hWnd public. | John Ankarström | |
A getter offers encapsulation, but it is also less transparent in a sense. Thinking of ListView as a struct, it is natural to expose hWnd as a public member variable. | |||
2022-07-17 | Update type names and variable prefixes. | John Ankarström | |
2022-07-17 | Name function arguments in headers. | John Ankarström | |
This is obviously a lot less obtuse. | |||
2022-07-16 | Formatting. | John Ankarström | |
2022-07-16 | Add m_hWndParent to ListView. | John Ankarström | |
This avoids g_hWnd. | |||
2022-07-15 | Split defs.h into separate header files. | John Ankarström | |
This is feasible now that the makedeps script exists to automatically manage build dependencies (see 6034fe2, d00f8b3). | |||
2022-02-15 | Combine header files. | John Ankarström | |
Some older UNIX programs are organized like this, and I think it gives a very good overview over the code. See troff for an example. | |||
2022-02-15 | Rework list view code. | John Ankarström | |