mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +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)
|
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue