Changeset 398


Ignore:
Timestamp:
May 22, 2016, 12:55:07 PM (9 years ago)
Author:
RBRi
Message:

remove usage of ACLStringUtility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Library/ACLString.pas

    r17 r398  
    179179uses
    180180{$Ifdef os2}
    181   OS2Def, ACLFileIOUtility,
     181  OS2Def,
     182  ACLFileIOUtility,
    182183{$endif}
    183   ACLUtility, ACLStringUtility;
     184  ACLUtility,
     185  CharUtilsUnit;
    184186
    185187const
     
    401403  // EndP now points to one byte past last non-space char
    402404
    403   _Length:= PCharDiff( EndP, StartP );
     405  _Length:= PCharPointerDiff( EndP, StartP );
    404406
    405407  if _Length > 0 then
     
    486488    if C = CharToFind then
    487489    begin
    488       Result:= PCharDiff( p, _S );
     490      Result:= PCharPointerDiff( p, _S );
    489491      break;
    490492    end;
Note: See TracChangeset for help on using the changeset viewer.