Ignore:
Timestamp:
Apr 2, 2000, 5:12:48 PM (25 years ago)
Author:
cbratschi
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/shlview.cpp

    r3271 r3306  
    1 /* $Id: shlview.cpp,v 1.12 2000-03-29 15:24:08 cbratschi Exp $ */
     1/* $Id: shlview.cpp,v 1.13 2000-04-02 15:12:48 cbratschi Exp $ */
    22/*
    33 * ShellView
     
    449449            _ILSimpleGetText(pItemIdList1, strName1, MAX_PATH);
    450450            _ILSimpleGetText(pItemIdList2, strName2, MAX_PATH);
    451             nDiff = strcmp(strName1, strName2);
     451            nDiff = strcmpi(strName1, strName2);
    452452        }
    453453        /* Sort by File Size, Only valid for Files */
     
    462462            _ILGetFileType(pItemIdList1, strName1, MAX_PATH);
    463463            _ILGetFileType(pItemIdList2, strName2, MAX_PATH);
    464             nDiff = strcmp(strName1, strName2);
     464            nDiff = strcmpi(strName1, strName2);
    465465        }
    466466    }
     
    471471        _ILSimpleGetText(pItemIdList1, strName1, MAX_PATH);
    472472        _ILSimpleGetText(pItemIdList2, strName2, MAX_PATH);
    473         nDiff = strcmp(strName1, strName2);
     473        nDiff = strcmpi(strName1, strName2);
    474474    }
    475475
Note: See TracChangeset for help on using the changeset viewer.