Commit 3ebb9b7b authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

shell32/tests: Use SW_HIDE with ShellExecuteA in tests.

parent dfa65a52
...@@ -118,7 +118,7 @@ static INT_PTR shell_execute(LPCSTR verb, LPCSTR file, LPCSTR parameters, LPCSTR ...@@ -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 * association it displays the 'Open With' dialog and I could not find
* a flag to prevent this. * 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) if (rc > 32)
{ {
......
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