summaryrefslogtreecommitdiffstats
path: root/Source/MFCDialog/PathDialog.cpp
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-03-13 20:29:26 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-03-13 20:29:26 (GMT)
commit7c73456401724698a1a4675d475d953d17558911 (patch)
tree1ee8143deb06f712f0dfdc375e375e4bb7e5b99d /Source/MFCDialog/PathDialog.cpp
parent6349735590508504435612e36b48d782e9d068e6 (diff)
downloadCMake-7c73456401724698a1a4675d475d953d17558911.zip
CMake-7c73456401724698a1a4675d475d953d17558911.tar.gz
CMake-7c73456401724698a1a4675d475d953d17558911.tar.bz2
Remove warnings
Diffstat (limited to 'Source/MFCDialog/PathDialog.cpp')
-rw-r--r--Source/MFCDialog/PathDialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/MFCDialog/PathDialog.cpp b/Source/MFCDialog/PathDialog.cpp
index 58337f9..f920ce7 100644
--- a/Source/MFCDialog/PathDialog.cpp
+++ b/Source/MFCDialog/PathDialog.cpp
@@ -293,7 +293,7 @@ int CPathDialog::Touch(LPCTSTR lpPath, BOOL bValidate)
TCHAR szPath[MAX_PATH];
_tcscpy(szPath, lpPath);
- int nLen = _tcslen(szPath);
+ size_t nLen = _tcslen(szPath);
int i;
if(nLen==3)
@@ -355,7 +355,7 @@ int CPathDialog::ConcatPath(LPTSTR lpRoot, LPCTSTR lpMorePath)
return 1;
}
- int nLen = _tcslen(lpRoot);
+ size_t nLen = _tcslen(lpRoot);
if(nLen<3)
{