mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Sync wordpad and winhlp32 with Wine 1.1.21
svn path=/trunk/; revision=40852
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user