From dc406bd2bc00bac302dd8ea984746cb09fbbf32c Mon Sep 17 00:00:00 2001 From: Matthias Kupfer Date: Thu, 29 Jan 2009 13:53:13 +0000 Subject: [PATCH] remove outdated unimplemented MessageBox svn path=/trunk/; revision=39195 --- reactos/dll/cpl/sysdm/hardprof.c | 5 ----- reactos/dll/cpl/sysdm/userprofile.c | 1 - 2 files changed, 6 deletions(-) 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;