Ignore:
Timestamp:
Apr 27, 2007, 8:42:34 PM (18 years ago)
Author:
RBRi
Message:

changed to use StringUtilsUnit

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NewView/GlobalFilelistUnit.pas

    r61 r124  
    5050
    5151uses
     52  StringUtilsUnit,
    5253  DebugUnit,
    53   ACLStringUtility,
    5454  SysUtils;
    5555
     
    124124  while ( Result <> nil ) do
    125125  begin
    126     if ( StringsSame( StrPas( Result ^. FilePath ), FilePath ) ) then
     126    if ( StrEqualIgnoringCase( StrPas( Result ^. FilePath ), FilePath ) ) then
    127127    begin
    128128      // found
     
    164164    if ( pEntry ^. Window = Window ) then
    165165    begin
    166       if ( StringsSame( StrPas( pEntry ^. FilePath ), FilePath ) ) then
     166      if ( StrEqualIgnoringCase( StrPas( pEntry ^. FilePath ), FilePath ) ) then
    167167      begin
    168168        // found
Note: See TracChangeset for help on using the changeset viewer.