https://git.reactos.org/?p=reactos.git;a=commitdiff;h=b76d49bcaadb9aea02220…
commit b76d49bcaadb9aea0222054dd0d7d0a372b57041
Author: Eric Kohl <eric.kohl(a)reactos.org>
AuthorDate: Sun Feb 6 16:30:53 2022 +0100
Commit: Eric Kohl <eric.kohl(a)reactos.org>
CommitDate: Sun Feb 6 16:30:53 2022 +0100
[SYSSETUP] Disable debug messages on the process page
---
dll/win32/syssetup/wizard.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/dll/win32/syssetup/wizard.c b/dll/win32/syssetup/wizard.c
index 0dcebc6d12e..5404e3c28a0 100644
--- a/dll/win32/syssetup/wizard.c
+++ b/dll/win32/syssetup/wizard.c
@@ -2371,14 +2371,14 @@ ProcessPageDlgProc(HWND hwndDlg,
break;
case PM_ITEM_START:
- DPRINT1("PM_ITEM_START %lu\n", (ULONG)lParam);
+ DPRINT("PM_ITEM_START %lu\n", (ULONG)lParam);
SendDlgItemMessage(hwndDlg, IDC_PROCESSPROGRESS, PBM_SETRANGE, 0,
MAKELPARAM(0, (ULONG)lParam));
SendDlgItemMessage(hwndDlg, IDC_PROCESSPROGRESS, PBM_SETPOS, 0, 0);
SendDlgItemMessage(hwndDlg, IDC_TASKTEXT1 + wParam, WM_SETFONT,
(WPARAM)SetupData->hBoldFont, (LPARAM)TRUE);
break;
case PM_ITEM_END:
- DPRINT1("PM_ITEM_END\n");
+ DPRINT("PM_ITEM_END\n");
if (lParam == ERROR_SUCCESS)
{
}
@@ -2389,14 +2389,14 @@ ProcessPageDlgProc(HWND hwndDlg,
break;
case PM_STEP_START:
- DPRINT1("PM_STEP_START\n");
+ DPRINT("PM_STEP_START\n");
RegistrationNotify = (PREGISTRATIONNOTIFY)lParam;
SendDlgItemMessage(hwndDlg, IDC_ITEM, WM_SETTEXT, 0,
(LPARAM)((RegistrationNotify->CurrentItem != NULL)?
RegistrationNotify->CurrentItem : L""));
break;
case PM_STEP_END:
- DPRINT1("PM_STEP_END\n");
+ DPRINT("PM_STEP_END\n");
RegistrationNotify = (PREGISTRATIONNOTIFY)lParam;
SendDlgItemMessage(hwndDlg, IDC_PROCESSPROGRESS, PBM_SETPOS,
RegistrationNotify->Progress, 0);
if (RegistrationNotify->LastError != ERROR_SUCCESS)
@@ -2406,7 +2406,7 @@ ProcessPageDlgProc(HWND hwndDlg,
break;
case PM_ITEMS_DONE:
- DPRINT1("PM_ITEMS_DONE\n");
+ DPRINT("PM_ITEMS_DONE\n");
/* Enable the Back and Next buttons */
PropSheet_SetWizButtons(GetParent(hwndDlg), PSWIZB_NEXT);
PropSheet_PressButton(GetParent(hwndDlg), PSBTN_NEXT);