mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[SHELL32] ShellDispatch::ShellExecute must default to displaying the window (#6143)
SW_HIDE is not the correct default show mode. This can be reproduced by simple script: WScript.CreateObject("Shell.Application").ShellExecute("calc.exe");
This commit is contained in:
parent
95657698e7
commit
19a0f14bb1
1 changed files with 1 additions and 1 deletions
|
@ -245,7 +245,7 @@ HRESULT STDMETHODCALLTYPE CShellDispatch::ShellExecute(BSTR file, VARIANT v_args
|
|||
{
|
||||
CComVariant args_str, dir_str, op_str, show_int;
|
||||
WCHAR *args = NULL, *dir = NULL, *op = NULL;
|
||||
INT show = 0;
|
||||
INT show = SW_SHOW;
|
||||
HINSTANCE ret;
|
||||
|
||||
TRACE("(%s, %s, %s, %s, %s)\n", debugstr_w(file), debugstr_variant(&v_args),
|
||||
|
|
Loading…
Reference in a new issue