Changeset 2 for trunk/UFormImport.pas
- Timestamp:
- Apr 20, 2016, 6:29:54 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:ignore
set to
lib
AcronymDecoder.exe
AcronymDecoder.lps
-
Property svn:ignore
set to
-
trunk/UFormImport.pas
r1 r2 68 68 Line := Trim(Memo1.Lines[I]); 69 69 if Copy(Line, 1, 1) = ';' then begin 70 AcronymName := Trim(Copy(Line, 2, Length(Line))); 70 if Pos(':', Line) > 0 then begin 71 AcronymName := Trim(Copy(Line, 2, Pos(':', Line) - 2)); 72 Line := Copy(Line, Pos(':', Line), Length(Line)); 73 end else AcronymName := Trim(Copy(Line, 2, Length(Line))); 71 74 end; 72 75 if Copy(Line, 1, 1) = ':' then begin
Note:
See TracChangeset
for help on using the changeset viewer.