Changeset 231 for trunk/Acronym.pas
- Timestamp:
- Jan 25, 2025, 12:11:20 PM (8 days ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Acronym.pas
r230 r231 276 276 SSkip = 'Skip'; 277 277 SRemoveOnStart = 'Remove on start'; 278 SCleanSet = 'Clean set'; 278 279 SUnsupportedAuthMethod = 'Unsupported HTTP authorization method'; 279 280 SFileNotFound = 'File %s not found'; … … 291 292 ImportPatternFlagString[ipfSkip] := SSkip; 292 293 ImportPatternFlagString[ipfRemove] := SRemoveOnStart; 294 ImportPatternFlagString[ipfCleanSet] := SCleanSet; 293 295 end; 294 296 … … 560 562 P1 := Pos(StartString, S); 561 563 if P1 > 0 then begin 562 P2 := Pos( TImportPattern(Format.ItemPatterns[(I + 1) mod563 Format.ItemPatterns.Count] ).StartString, S);564 P2 := Pos(Format.ItemPatterns[(I + 1) mod 565 Format.ItemPatterns.Count].StartString, S); 564 566 if (P2 > 0) and (P1 < P2) then Continue; 565 567 end; … … 1383 1385 Result := ''; 1384 1386 for I := 0 to Count - 1 do 1385 Result := Result + Items[I].Name + ', ';1386 System.Delete(Result, Length(Result) , 1);1387 Result := Result + Items[I].Name + ', '; 1388 System.Delete(Result, Length(Result) - 1, 2); 1387 1389 end; 1388 1390
Note:
See TracChangeset
for help on using the changeset viewer.