Author: khornicek
Date: Fri Feb 17 23:39:39 2017
New Revision: 73823

URL: http://svn.reactos.org/svn/reactos?rev=73823&view=rev
Log:
[SHELL32]
- Make the "Open with" dialog start in Program Files as is done in Windows 
(doesn't really changes anything because comdlg32 doesn't expand environment 
variables).

Modified:
    trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp

Modified: trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp?rev=73823&r1=73822&r2=73823&view=diff
==============================================================================
--- trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp   [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/shell32/COpenWithMenu.cpp   [iso-8859-1] Fri Feb 17 
23:39:39 2017
@@ -907,6 +907,7 @@
     ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;
     ofn.nMaxFile = (sizeof(wszPath) / sizeof(WCHAR));
     ofn.lpstrFile = wszPath;
+    ofn.lpstrInitialDir = L"%programfiles%";
 
     /* Init title */
     if (LoadStringW(shell32_hInstance, IDS_OPEN_WITH, wszTitle, 
sizeof(wszTitle) / sizeof(WCHAR)))


Reply via email to