summaryrefslogtreecommitdiffstats
path: root/Source/MFCDialog
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2004-02-16 15:57:38 (GMT)
committerKen Martin <ken.martin@kitware.com>2004-02-16 15:57:38 (GMT)
commit5a391f8aa7168f70c7315f8a7c9e14ba435843f9 (patch)
tree241b17e3b3ea80dd72bfdda747ef9fb022d9fef3 /Source/MFCDialog
parentc60f2fabc413ba79271d55301a7633435e21a865 (diff)
downloadCMake-5a391f8aa7168f70c7315f8a7c9e14ba435843f9.zip
CMake-5a391f8aa7168f70c7315f8a7c9e14ba435843f9.tar.gz
CMake-5a391f8aa7168f70c7315f8a7c9e14ba435843f9.tar.bz2
shut up unfixable warning
Diffstat (limited to 'Source/MFCDialog')
-rw-r--r--Source/MFCDialog/PathDialog.cpp5
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: