mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-15 09:09:09 +02:00
* TTOrdType -> TOrdType
This commit is contained in:
parent
f40c70caec
commit
357b6ee52b
@ -42,7 +42,7 @@ unit typinfo;
|
|||||||
tkClass,tkObject,tkWChar,tkBool,tkInt64,tkQWord,
|
tkClass,tkObject,tkWChar,tkBool,tkInt64,tkQWord,
|
||||||
tkDynArray,tkInterfaceRaw);
|
tkDynArray,tkInterfaceRaw);
|
||||||
|
|
||||||
TTOrdType = (otSByte,otUByte,otSWord,otUWord,otSLong,otULong);
|
TOrdType = (otSByte,otUByte,otSWord,otUWord,otSLong,otULong);
|
||||||
|
|
||||||
TFloatType = (ftSingle,ftDouble,ftExtended,ftComp,ftCurr);
|
TFloatType = (ftSingle,ftDouble,ftExtended,ftComp,ftCurr);
|
||||||
TMethodKind = (mkProcedure,mkFunction,mkConstructor,mkDestructor,
|
TMethodKind = (mkProcedure,mkFunction,mkConstructor,mkDestructor,
|
||||||
@ -86,7 +86,7 @@ unit typinfo;
|
|||||||
tkUnKnown,tkLString,tkWString,tkAString,tkVariant:
|
tkUnKnown,tkLString,tkWString,tkAString,tkVariant:
|
||||||
();
|
();
|
||||||
tkInteger,tkChar,tkEnumeration,tkWChar:
|
tkInteger,tkChar,tkEnumeration,tkWChar:
|
||||||
(OrdType : TTOrdType;
|
(OrdType : TOrdType;
|
||||||
case TTypeKind of
|
case TTypeKind of
|
||||||
tkInteger,tkChar,tkEnumeration,tkBool,tkWChar : (
|
tkInteger,tkChar,tkEnumeration,tkBool,tkWChar : (
|
||||||
MinValue,MaxValue : Longint;
|
MinValue,MaxValue : Longint;
|
||||||
@ -641,7 +641,7 @@ var
|
|||||||
TypeInfo: PTypeInfo;
|
TypeInfo: PTypeInfo;
|
||||||
AMethod : TMethod;
|
AMethod : TMethod;
|
||||||
DataSize: Integer;
|
DataSize: Integer;
|
||||||
OrdType: TTOrdType;
|
OrdType: TOrdType;
|
||||||
Signed: Boolean;
|
Signed: Boolean;
|
||||||
begin
|
begin
|
||||||
Result:=0;
|
Result:=0;
|
||||||
@ -1496,7 +1496,10 @@ end;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.34 2004-12-30 18:11:43 michael
|
Revision 1.35 2005-02-08 16:10:29 florian
|
||||||
|
* TTOrdType -> TOrdType
|
||||||
|
|
||||||
|
Revision 1.34 2004/12/30 18:11:43 michael
|
||||||
+ Fix for WideString props
|
+ Fix for WideString props
|
||||||
|
|
||||||
Revision 1.33 2004/12/28 15:30:04 florian
|
Revision 1.33 2004/12/28 15:30:04 florian
|
||||||
|
Loading…
Reference in New Issue
Block a user