Changeset 31 for trunk/USystem.pas
- Timestamp:
- Nov 24, 2011, 10:03:48 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/USystem.pas
r29 r31 82 82 Base: TChronisBase; 83 83 procedure Load(ObjectId: Integer); 84 procedure Assign(Source: TChronisObject); 84 85 end; 85 86 … … 719 720 end; 720 721 722 procedure TChronisObject.Assign(Source: TChronisObject); 723 begin 724 Id := Source.Id; 725 Table := Source.Table; 726 Schema := Source.Schema; 727 Name := Source.Name; 728 Base := Source.Base; 729 GroupId := Source.GroupId; 730 PrimaryKey := Source.PrimaryKey; 731 end; 732 721 733 end. 722 734
Note:
See TracChangeset
for help on using the changeset viewer.