* Tag is now PtrInt, for upcoming Delphi 64-bit compatibility

git-svn-id: trunk@16408 -
This commit is contained in:
michael 2010-11-23 21:19:39 +00:00
parent 749991ec02
commit c4cc9b59e0

View File

@ -1582,7 +1582,7 @@ type
private
FOwner: TComponent;
FName: TComponentName;
FTag: Longint;
FTag: Ptrint;
FComponents: TFpList;
FFreeNotifies: TFpList;
FDesignInfo: Longint;
@ -1681,7 +1681,7 @@ type
property VCLComObject: Pointer read FVCLComObject write FVCLComObject;
published
property Name: TComponentName read FName write SetName stored False;
property Tag: Longint read FTag write FTag default 0;
property Tag: PtrInt read FTag write FTag default 0;
end;
{ TBasicActionLink }