Commit cff4b6d0 authored by Nix N. Nix's avatar Nix N. Nix Committed by Alexandre Julliard

Removed message box that would pop up if a RunMRU list was not found.

parent fd40708e
......@@ -234,8 +234,6 @@ BOOL CALLBACK RunDlgProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
return TRUE ;
}
}
/* This should be DefDlgProcA, but that doesn't work */
return FALSE ;
}
......@@ -255,8 +253,8 @@ void FillList (HWND hCb, char *pszLatest)
0, "", REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, NULL, &hkey, NULL))
MessageBoxA (hCb, "Unable to open registry key !", "Nix", MB_OK) ;
if (ERROR_SUCCESS != RegQueryValueExA (hkey, "MRUList", NULL, NULL, NULL, &icList))
MessageBoxA (hCb, "Unable to grab size for MRUList !", "Nix", MB_OK) ;
RegQueryValueExA (hkey, "MRUList", NULL, NULL, NULL, &icList) ;
if (icList > 0)
{
pszList = malloc (icList) ;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment