Browse Source

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

git-svn-id: trunk@16408 -
michael 14 years ago
parent
commit
c4cc9b59e0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rtl/objpas/classes/classesh.inc

+ 2 - 2
rtl/objpas/classes/classesh.inc

@@ -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 }