https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4ceea7491912a03a89f4b8...
commit 4ceea7491912a03a89f4b8c70aa8cf145ddf104c Author: Jared Smudde computerwhiz02@hotmail.com AuthorDate: Wed Aug 1 15:15:27 2018 -0500 Commit: Hermès BÉLUSCA - MAÏTO hermes.belusca-maito@reactos.org CommitDate: Wed Aug 1 22:15:27 2018 +0200
[USRMGR] Disable the Extra tab. It serves no purpose. (#700) --- dll/cpl/usrmgr/usrmgr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dll/cpl/usrmgr/usrmgr.c b/dll/cpl/usrmgr/usrmgr.c index 81b57df38c..dd3bbbb470 100644 --- a/dll/cpl/usrmgr/usrmgr.c +++ b/dll/cpl/usrmgr/usrmgr.c @@ -43,7 +43,7 @@ InitPropSheetPage(PROPSHEETPAGE *psp, WORD idDlg, DLGPROC DlgProc) static LONG APIENTRY UsrmgrApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam) { - PROPSHEETPAGE psp[3]; + PROPSHEETPAGE psp[2]; PROPSHEETHEADER psh; TCHAR Caption[1024];
@@ -66,7 +66,7 @@ UsrmgrApplet(HWND hwnd, UINT uMsg, LPARAM wParam, LPARAM lParam)
InitPropSheetPage(&psp[0], IDD_USERS, UsersPageProc); InitPropSheetPage(&psp[1], IDD_GROUPS, GroupsPageProc); - InitPropSheetPage(&psp[2], IDD_EXTRA, ExtraPageProc); + /* InitPropSheetPage(&psp[2], IDD_EXTRA, ExtraPageProc); */
return (LONG)(PropertySheet(&psh) != -1); }