Changeset 3306 for trunk/src/shell32/shlview.cpp
- Timestamp:
- Apr 2, 2000, 5:12:48 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/shell32/shlview.cpp
r3271 r3306 1 /* $Id: shlview.cpp,v 1.1 2 2000-03-29 15:24:08 cbratschi Exp $ */1 /* $Id: shlview.cpp,v 1.13 2000-04-02 15:12:48 cbratschi Exp $ */ 2 2 /* 3 3 * ShellView … … 449 449 _ILSimpleGetText(pItemIdList1, strName1, MAX_PATH); 450 450 _ILSimpleGetText(pItemIdList2, strName2, MAX_PATH); 451 nDiff = strcmp (strName1, strName2);451 nDiff = strcmpi(strName1, strName2); 452 452 } 453 453 /* Sort by File Size, Only valid for Files */ … … 462 462 _ILGetFileType(pItemIdList1, strName1, MAX_PATH); 463 463 _ILGetFileType(pItemIdList2, strName2, MAX_PATH); 464 nDiff = strcmp (strName1, strName2);464 nDiff = strcmpi(strName1, strName2); 465 465 } 466 466 } … … 471 471 _ILSimpleGetText(pItemIdList1, strName1, MAX_PATH); 472 472 _ILSimpleGetText(pItemIdList2, strName2, MAX_PATH); 473 nDiff = strcmp (strName1, strName2);473 nDiff = strcmpi(strName1, strName2); 474 474 } 475 475
Note:
See TracChangeset
for help on using the changeset viewer.