mirror of
https://github.com/reactos/reactos.git
synced 2025-02-21 16:04:57 +00:00
[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:
parent
a57f7b50c0
commit
fb30239129
1 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue