[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
This commit is contained in:
Jose Carlos Jesus 2020-01-31 11:09:00 +00:00 committed by Victor Perevertkin
parent a57f7b50c0
commit fb30239129

View file

@ -72,34 +72,34 @@ VOID OnClearRecentItems()
INT_PTR CALLBACK CustomizeClassicProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) INT_PTR CALLBACK CustomizeClassicProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam)
{ {
switch(Message) switch (Message)
{ {
case WM_INITDIALOG: case WM_INITDIALOG:
/* FIXME: Properly initialize the dialog (check whether 'clear' button must be disabled, for example) */ /* FIXME: Properly initialize the dialog (check whether 'clear' button must be disabled, for example) */
return TRUE; return TRUE;
case WM_COMMAND: case WM_COMMAND:
switch(LOWORD(wParam)) switch (LOWORD(wParam))
{ {
case IDC_CLASSICSTART_ADD: case IDC_CLASSICSTART_ADD:
OnAddStartMenuItems(hwnd); OnAddStartMenuItems(hwnd);
break; break;
case IDC_CLASSICSTART_REMOVE: case IDC_CLASSICSTART_REMOVE:
OnRemoveStartmenuItems(hwnd); OnRemoveStartmenuItems(hwnd);
break; break;
case IDC_CLASSICSTART_ADVANCED: case IDC_CLASSICSTART_ADVANCED:
OnAdvancedStartMenuItems(); OnAdvancedStartMenuItems();
break; break;
case IDC_CLASSICSTART_CLEAR: case IDC_CLASSICSTART_CLEAR:
OnClearRecentItems(); OnClearRecentItems();
break; break;
case IDOK: case IDOK:
EndDialog(hwnd, IDOK); EndDialog(hwnd, IDOK);
break; break;
case IDCANCEL: case IDCANCEL:
EndDialog(hwnd, IDCANCEL); EndDialog(hwnd, IDCANCEL);
break; break;
} }
break; break;
default: default:
return FALSE; return FALSE;
} }