Browse Source

* Finalize to int_finalize renamed

florian 25 years ago
parent
commit
b3c53b4f55
1 changed files with 7 additions and 4 deletions
  1. 7 4
      rtl/inc/objpas.inc

+ 7 - 4
rtl/inc/objpas.inc

@@ -14,7 +14,7 @@
 
 
  **********************************************************************}
  **********************************************************************}
 
 
-Procedure Finalize (Data,TypeInfo: Pointer);forward;
+Procedure int_finalize (Data,TypeInfo: Pointer);forward;
 
 
 {****************************************************************************
 {****************************************************************************
                   Internal Routines called from the Compiler
                   Internal Routines called from the Compiler
@@ -492,7 +492,7 @@ Procedure Finalize (Data,TypeInfo: Pointer);forward;
            while vmt<>nil do
            while vmt<>nil do
              begin
              begin
                 if Assigned(Pointer((Pointer(vmt)+vmtInitTable)^)) then
                 if Assigned(Pointer((Pointer(vmt)+vmtInitTable)^)) then
-                  Finalize(Pointer(Self),Pointer((Pointer(vmt)+vmtInitTable)^));
+                  int_finalize(Pointer(Self),Pointer((Pointer(vmt)+vmtInitTable)^));
                 vmt:=vmt.ClassParent;
                 vmt:=vmt.ClassParent;
              end;
              end;
         end;
         end;
@@ -661,7 +661,10 @@ Procedure Finalize (Data,TypeInfo: Pointer);forward;
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.10  2000-11-07 23:42:21  florian
+  Revision 1.11  2000-11-09 17:50:12  florian
+    * Finalize to int_finalize renamed
+
+  Revision 1.10  2000/11/07 23:42:21  florian
     + AfterConstruction and BeforeDestruction implemented
     + AfterConstruction and BeforeDestruction implemented
     + TInterfacedObject implemented
     + TInterfacedObject implemented
 
 
@@ -688,4 +691,4 @@ Procedure Finalize (Data,TypeInfo: Pointer);forward;
 
 
   Revision 1.1.2.1  2000/07/22 14:46:57  sg
   Revision 1.1.2.1  2000/07/22 14:46:57  sg
   * Made TObject.MethodAddress case independent
   * Made TObject.MethodAddress case independent
-}
+}