diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/MFCDialog/PathDialog.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/MFCDialog/PathDialog.cpp b/Source/MFCDialog/PathDialog.cpp index f920ce7..d9e86a4 100644 --- a/Source/MFCDialog/PathDialog.cpp +++ b/Source/MFCDialog/PathDialog.cpp @@ -180,8 +180,9 @@ int CPathDialog::DoModal() pidl = SHBrowseForFolder(&m_bi); if (pidl!=NULL) { - //not need do this because OnOK function did - //bSucceeded = SHGetPathFromIDList(pidl, m_szPathName); +#if defined(_WIN64) && defined(__INTEL_COMPILER) +# pragma warning ( disable : 167) +#endif // In C++: pMalloc->Free(pidl); //In C: |