Ver Fonte

* Removed unused vars.

git-svn-id: trunk@10631 -
yury há 17 anos atrás
pai
commit
bc50a7fd6c

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

@@ -1240,8 +1240,6 @@ type
     FRootAncestor: TComponent;
     FRootAncestor: TComponent;
     FPropPath: String;
     FPropPath: String;
     FAncestors: TStringList;
     FAncestors: TStringList;
-    FAncestorPos: Integer;
-    FChildPos: Integer;
     FOnFindAncestor: TFindAncestorEvent;
     FOnFindAncestor: TFindAncestorEvent;
     FOnWriteMethodProperty: TWriteMethodPropertyEvent;
     FOnWriteMethodProperty: TWriteMethodPropertyEvent;
     FOnWriteStringProperty:TReadWriteStringPropertyEvent;
     FOnWriteStringProperty:TReadWriteStringPropertyEvent;

+ 0 - 4
rtl/objpas/classes/lists.inc

@@ -324,7 +324,6 @@ begin
 end;
 end;
 
 
 procedure TFPList.DoCopy(ListA, ListB : TFPList);
 procedure TFPList.DoCopy(ListA, ListB : TFPList);
-var l : TFPList;
 begin
 begin
   if assigned (ListB) then
   if assigned (ListB) then
     CopyMove (ListB)
     CopyMove (ListB)
@@ -393,7 +392,6 @@ begin
 end;
 end;
 
 
 procedure TFPList.DoOr(ListA, ListB : TFPList);
 procedure TFPList.DoOr(ListA, ListB : TFPList);
-var r : integer;
 begin
 begin
   if assigned (ListB) then
   if assigned (ListB) then
     begin
     begin
@@ -670,7 +668,6 @@ begin
 end;
 end;
 
 
 procedure TList.DoCopy(ListA, ListB : TList);
 procedure TList.DoCopy(ListA, ListB : TList);
-var l : TList;
 begin
 begin
   if assigned (ListB) then
   if assigned (ListB) then
     CopyMove (ListB)
     CopyMove (ListB)
@@ -739,7 +736,6 @@ begin
 end;
 end;
 
 
 procedure TList.DoOr(ListA, ListB : TList);
 procedure TList.DoOr(ListA, ListB : TList);
-var r : integer;
 begin
 begin
   if assigned (ListB) then
   if assigned (ListB) then
     begin
     begin

+ 0 - 5
rtl/objpas/classes/resref.inc

@@ -82,7 +82,6 @@ type
 var
 var
   NeedResolving : TLinkedList;
   NeedResolving : TLinkedList;
   ResolveSection : TRTLCriticalSection;
   ResolveSection : TRTLCriticalSection;
-  LastAddInstance : TUnresolvedInstance;
 
 
 // Add an instance to the global list of instances which need resolving.
 // Add an instance to the global list of instances which need resolving.
 Function FindUnresolvedInstance(AInstance: TPersistent) : TUnResolvedInstance;
 Function FindUnresolvedInstance(AInstance: TPersistent) : TUnResolvedInstance;
@@ -139,10 +138,6 @@ end;
 
 
 procedure GlobalFixupReferences;
 procedure GlobalFixupReferences;
 
 
-var
-  V : TResolveReferenceVisitor;
-  I : Integer;
-    
 begin
 begin
   If (NeedResolving=Nil) then 
   If (NeedResolving=Nil) then 
     Exit;
     Exit;