https://git.reactos.org/?p=reactos.git;a=commitdiff;h=fb30239129153a08ed71ae97d0b6bd8bab1f0b99
commit fb30239129153a08ed71ae97d0b6bd8bab1f0b99 Author: Jose Carlos Jesus <zecarlos1...@hotmail.com> AuthorDate: Fri Jan 31 11:09:00 2020 +0000 Commit: Victor Perevertkin <vic...@perevertkin.ru> CommitDate: Wed Feb 5 19:27:10 2020 +0100 [FORMATING] Fix indentation of startmnucust On branch CodeFormat Changes to be committed: modified: base/shell/explorer/startmnucust.cpp For a better visualization and understanding of the code --- base/shell/explorer/startmnucust.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/base/shell/explorer/startmnucust.cpp b/base/shell/explorer/startmnucust.cpp index 3c0334357fe..0aa436f20cf 100644 --- a/base/shell/explorer/startmnucust.cpp +++ b/base/shell/explorer/startmnucust.cpp @@ -72,34 +72,34 @@ VOID OnClearRecentItems() INT_PTR CALLBACK CustomizeClassicProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) { - switch(Message) + switch (Message) { case WM_INITDIALOG: /* FIXME: Properly initialize the dialog (check whether 'clear' button must be disabled, for example) */ - return TRUE; + return TRUE; case WM_COMMAND: - switch(LOWORD(wParam)) + switch (LOWORD(wParam)) { case IDC_CLASSICSTART_ADD: OnAddStartMenuItems(hwnd); - break; + break; case IDC_CLASSICSTART_REMOVE: OnRemoveStartmenuItems(hwnd); - break; + break; case IDC_CLASSICSTART_ADVANCED: OnAdvancedStartMenuItems(); - break; + break; case IDC_CLASSICSTART_CLEAR: OnClearRecentItems(); - break; + break; case IDOK: EndDialog(hwnd, IDOK); - break; + break; case IDCANCEL: EndDialog(hwnd, IDCANCEL); - break; + break; } - break; + break; default: return FALSE; }