diff --git a/reactos/dll/cpl/sysdm/hardprof.c b/reactos/dll/cpl/sysdm/hardprof.c index 1ed28767d14..cf1092e2066 100644 --- a/reactos/dll/cpl/sysdm/hardprof.c +++ b/reactos/dll/cpl/sysdm/hardprof.c @@ -22,10 +22,6 @@ RenameProfDlgProc(HWND hwndDlg, switch (uMsg) { - case WM_INITDIALOG: - MessageBox(hwndDlg, _T("Dialog not yet implemented!"), NULL, 0); - break; - case WM_COMMAND: if ((LOWORD(wParam) == IDOK) || (LOWORD(wParam) == IDCANCEL)) { @@ -60,7 +56,6 @@ HardProfDlgProc(HWND hwndDlg, SendMessage(GetDlgItem(hwndDlg, IDC_HRDPROFDWN), BM_SETIMAGE,(WPARAM)IMAGE_ICON, (LPARAM)(HANDLE)LoadIcon(hApplet, MAKEINTRESOURCE(IDI_DOWN))); - MessageBox(hwndDlg, _T("Dialog not yet implemented!"), NULL, 0); } break; diff --git a/reactos/dll/cpl/sysdm/userprofile.c b/reactos/dll/cpl/sysdm/userprofile.c index bad1c5c5079..462514d7717 100644 --- a/reactos/dll/cpl/sysdm/userprofile.c +++ b/reactos/dll/cpl/sysdm/userprofile.c @@ -139,7 +139,6 @@ UserProfileDlgProc(HWND hwndDlg, switch (uMsg) { case WM_INITDIALOG: - MessageBox(hwndDlg, _T("Dialog not yet implemented!"), NULL, 0); OnInitDialog(hwndDlg); break;