[PATCH] winecfg: Correct comment issues.
Isira Seneviratne <isirasen96(a)gmail.com> writes:
@@ -95,7 +95,7 @@ AboutDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) HeapFree(GetProcessHeap(), 0, owner); HeapFree(GetProcessHeap(), 0, org);
- /* prepare the panel */ + /* Prepare the panel. */ hWnd = GetDlgItem(hDlg, IDC_ABT_PANEL); if(hWnd) { @@ -107,7 +107,7 @@ AboutDlgProc (HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam) MAKEINTRESOURCEW(IDI_LOGO), IMAGE_ICON, 0, 0, LR_SHARED); }
- /* prepare the title text */ + /* Prepare the title text. */ hWnd = GetDlgItem(hDlg, IDC_ABT_TITLE_TEXT); if(hWnd) {
These are not really typos. I don't think it's necessary to enforce capitalization or final period on every single comment, the existing style is fine. -- Alexandre Julliard julliard(a)winehq.org
participants (2)
-
Alexandre Julliard -
Isira Seneviratne