Changeset 192 for trunk/UAcronym.pas
- Timestamp:
- Jul 17, 2018, 2:39:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UAcronym.pas
r184 r192 70 70 function SearchByName(Name: string; Flags: TSearchFlags = []): TAcronymMeaning; 71 71 function AddMeaning(Name: string): TAcronymMeaning; 72 function GetNames: string; 72 73 end; 73 74 … … 1057 1058 end; 1058 1059 1060 function TAcronymMeanings.GetNames: string; 1061 var 1062 I: Integer; 1063 begin 1064 Result := ''; 1065 for I := 0 to Count - 1 do 1066 Result := Result + ', "' + TAcronymMeaning(Items[I]).Name + '"'; 1067 System.Delete(Result, 1, 2); 1068 end; 1069 1059 1070 { TAcronymMeaning } 1060 1071
Note:
See TracChangeset
for help on using the changeset viewer.