Changeset 13 for trunk/UCore.pas
- Timestamp:
- Mar 17, 2015, 12:09:11 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UCore.pas
r11 r13 140 140 DataTypes.Clear; 141 141 with DataTypes do begin 142 RegisterType( STypeString, ftString, TFieldString);143 RegisterType( STypeInteger, ftInteger, TFieldInteger);144 RegisterType( STypeDateTime, ftDateTime, TFieldDateTime);145 RegisterType( STypeBoolean, ftBoolean, TFieldBoolean);146 RegisterType( STypeFloat, ftFloat, TFieldFloat);147 RegisterType( STypeMapPosition, ftMapPosition, TFieldMapPosition);148 RegisterType( STypeDate, ftDate, TFieldDate);149 RegisterType( STypeTime, ftTime, TFieldTime);150 RegisterType( STypeImage, ftImage, TFieldImage);142 RegisterType(1, STypeString, ftString, TFieldString); 143 RegisterType(2, STypeInteger, ftInteger, TFieldInteger); 144 RegisterType(3, STypeDateTime, ftDateTime, TFieldDateTime); 145 RegisterType(4, STypeBoolean, ftBoolean, TFieldBoolean); 146 RegisterType(5, STypeFloat, ftFloat, TFieldFloat); 147 RegisterType(6, STypeMapPosition, ftMapPosition, TFieldMapPosition); 148 RegisterType(7, STypeDate, ftDate, TFieldDate); 149 RegisterType(8, STypeTime, ftTime, TFieldTime); 150 RegisterType(9, STypeImage, ftImage, TFieldImage); 151 151 end; 152 152 end;
Note:
See TracChangeset
for help on using the changeset viewer.