rtl: changed TGUIDString to type string

This commit is contained in:
mattias 2018-07-07 19:58:08 +00:00
parent 73c710e93c
commit 97cb60459e
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ type
D3: word;
D4: array[0..7] of byte;
end;
TGUIDString = string; // ToDo: use type string when supported by compiler
TGUIDString = type string;
TClass = class of TObject;

View File

@ -251,7 +251,7 @@ type
public
TypeInfo: TTypeInfo external name 'typeinfo';
Flags: NativeInt external name 'flags'; // bit vector, see pf constants above
Params: TProcedureParams external name 'params'; // can be null
Params: TProcedureParams external name 'params'; // can be null or undefined
Index: JSValue external name 'index'; // can be undefined
Getter: String external name 'getter'; // name of field or function
Setter: String external name 'setter'; // name of field or function