mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
[REGEDIT]
- Don't assign an uninitialized custom filter buffer to the OPENFILENAME structure, clean up commented out code - Allows standard file type filters to show up See issue #5307 for more details. svn path=/trunk/; revision=46992
This commit is contained in:
parent
07d8f76a27
commit
af6172876c
1 changed files with 0 additions and 16 deletions
|
@ -228,8 +228,6 @@ static BOOL CheckCommDlgError(HWND hWnd)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define MAX_CUSTOM_FILTER_SIZE 50
|
|
||||||
TCHAR CustomFilterBuffer[MAX_CUSTOM_FILTER_SIZE];
|
|
||||||
TCHAR FileNameBuffer[_MAX_PATH];
|
TCHAR FileNameBuffer[_MAX_PATH];
|
||||||
TCHAR FileTitleBuffer[_MAX_PATH];
|
TCHAR FileTitleBuffer[_MAX_PATH];
|
||||||
|
|
||||||
|
@ -275,25 +273,11 @@ static BOOL InitOpenFileName(HWND hWnd, OPENFILENAME* pofn)
|
||||||
BuildFilterStrings(Filter, FilterPairs, sizeof(FilterPairs) / sizeof(FILTERPAIR));
|
BuildFilterStrings(Filter, FilterPairs, sizeof(FilterPairs) / sizeof(FILTERPAIR));
|
||||||
|
|
||||||
pofn->lpstrFilter = Filter;
|
pofn->lpstrFilter = Filter;
|
||||||
pofn->lpstrCustomFilter = CustomFilterBuffer;
|
|
||||||
pofn->nMaxCustFilter = MAX_CUSTOM_FILTER_SIZE;
|
|
||||||
pofn->nFilterIndex = 0;
|
|
||||||
pofn->lpstrFile = FileNameBuffer;
|
pofn->lpstrFile = FileNameBuffer;
|
||||||
pofn->nMaxFile = _MAX_PATH;
|
pofn->nMaxFile = _MAX_PATH;
|
||||||
pofn->lpstrFileTitle = FileTitleBuffer;
|
pofn->lpstrFileTitle = FileTitleBuffer;
|
||||||
pofn->nMaxFileTitle = _MAX_PATH;
|
pofn->nMaxFileTitle = _MAX_PATH;
|
||||||
/* pofn->lpstrInitialDir = _T("");*/
|
|
||||||
/* pofn->lpstrTitle = _T("Import Registry File");*/
|
|
||||||
/* pofn->Flags = OFN_ENABLETEMPLATE + OFN_EXPLORER + OFN_ENABLESIZING;*/
|
|
||||||
pofn->Flags = OFN_HIDEREADONLY;
|
pofn->Flags = OFN_HIDEREADONLY;
|
||||||
/* pofn->nFileOffset = ;*/
|
|
||||||
/* pofn->nFileExtension = ;*/
|
|
||||||
/* pofn->lpstrDefExt = _T("");*/
|
|
||||||
/* pofn->lCustData = ;*/
|
|
||||||
/* pofn->lpfnHook = ImportRegistryFile_OFNHookProc;*/
|
|
||||||
/* pofn->lpTemplateName = _T("ID_DLG_IMPORT_REGFILE");*/
|
|
||||||
/* pofn->lpTemplateName = MAKEINTRESOURCE(IDD_DIALOG1);*/
|
|
||||||
/* pofn->FlagsEx = ;*/
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue