mirror of
https://github.com/reactos/reactos.git
synced 2025-07-24 12:03:37 +00:00
- Sync wordpad and winhlp32 with Wine 1.1.21
svn path=/trunk/; revision=40852
This commit is contained in:
parent
182d8bb7f6
commit
36ff224481
2 changed files with 3 additions and 3 deletions
|
@ -179,7 +179,7 @@ BOOL WINHELP_GetOpenFileName(LPSTR lpszFile, int len)
|
|||
openfilename.nMaxFileTitle = 0;
|
||||
openfilename.lpstrInitialDir = szDir;
|
||||
openfilename.lpstrTitle = 0;
|
||||
openfilename.Flags = 0;
|
||||
openfilename.Flags = OFN_ENABLESIZING;
|
||||
openfilename.nFileOffset = 0;
|
||||
openfilename.nFileExtension = 0;
|
||||
openfilename.lpstrDefExt = 0;
|
||||
|
|
|
@ -870,7 +870,7 @@ static void DialogSaveFile(void)
|
|||
ZeroMemory(&sfn, sizeof(sfn));
|
||||
|
||||
sfn.lStructSize = sizeof(sfn);
|
||||
sfn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST | OFN_OVERWRITEPROMPT;
|
||||
sfn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST | OFN_OVERWRITEPROMPT | OFN_ENABLESIZING;
|
||||
sfn.hwndOwner = hMainWnd;
|
||||
sfn.lpstrFilter = wszFilter;
|
||||
sfn.lpstrFile = wszFile;
|
||||
|
@ -964,7 +964,7 @@ static void DialogOpenFile(void)
|
|||
ZeroMemory(&ofn, sizeof(ofn));
|
||||
|
||||
ofn.lStructSize = sizeof(ofn);
|
||||
ofn.Flags = OFN_HIDEREADONLY | OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST;
|
||||
ofn.Flags = OFN_HIDEREADONLY | OFN_FILEMUSTEXIST | OFN_PATHMUSTEXIST | OFN_ENABLESIZING;
|
||||
ofn.hwndOwner = hMainWnd;
|
||||
ofn.lpstrFilter = wszFilter;
|
||||
ofn.lpstrFile = wszFile;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue