shell32/tests: Use SW_HIDE with ShellExecuteA in tests.

oldstable
Vincent Povirk 2014-05-07 13:55:01 -05:00 committed by Alexandre Julliard
parent dfa65a52bb
commit 3ebb9b7b75
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ static INT_PTR shell_execute(LPCSTR verb, LPCSTR file, LPCSTR parameters, LPCSTR
* association it displays the 'Open With' dialog and I could not find
* a flag to prevent this.
*/
rc=(INT_PTR)ShellExecuteA(NULL, verb, file, parameters, directory, SW_SHOWNORMAL);
rc=(INT_PTR)ShellExecuteA(NULL, verb, file, parameters, directory, SW_HIDE);
if (rc > 32)
{