Vincent Povirk : shell32/tests: Use SW_HIDE with ShellExecuteA in tests.

Alexandre Julliard julliard at winehq.org
Wed May 7 15:18:16 CDT 2014


Module: wine
Branch: master
Commit: 3ebb9b7b7530a14acec574af127aec5d7a26b053
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3ebb9b7b7530a14acec574af127aec5d7a26b053

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Wed May  7 13:55:01 2014 -0500

shell32/tests: Use SW_HIDE with ShellExecuteA in tests.

---

 dlls/shell32/tests/shlexec.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/shell32/tests/shlexec.c b/dlls/shell32/tests/shlexec.c
index e3169c8..7f07c70 100644
--- a/dlls/shell32/tests/shlexec.c
+++ b/dlls/shell32/tests/shlexec.c
@@ -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)
     {




More information about the wine-cvs mailing list