Changeset 90 for trunk/UContact.pas


Ignore:
Timestamp:
Feb 2, 2022, 2:55:58 PM (2 years ago)
Author:
chronos
Message:
  • Modified: Build under Lazarus 2.2.0.
  • Modified: Updated Common package.
  • Added: Read Me file with app description and development information.
  • Added: Test form available in debug mode from Tools menu with list of test cases to better support app testability.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UContact.pas

    r88 r90  
    11471147  ParseState: TParseState;
    11481148  Line: string;
     1149  Line2: string;
    11491150  Value: string;
    11501151  I: Integer;
     
    11811182        while True do begin
    11821183          Inc(I);
    1183           if (Length(Lines[I]) > 0) and (Lines[I][1] = ' ') then begin
     1184          Line2 := Lines[I];
     1185          if (Length(Lines[I]) > 0) and (Line2[1] = ' ') then begin
    11841186            Value := Value + Trim(Lines[I]);
    11851187          end else
Note: See TracChangeset for help on using the changeset viewer.