]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
local variable renamed to follow coding conventions
authorivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 9 Aug 2001 11:33:29 +0000 (11:33 +0000)
committerivana <ivana@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 9 Aug 2001 11:33:29 +0000 (11:33 +0000)
TGeant4/TG4VolumesFrames.cxx

index 99f6148d527bb924d85d868f0e7409387b10a122..bc51fe8eca2a757198630f9068fc5b08411f236e 100644 (file)
@@ -32,8 +32,8 @@ TG4VolumesFrames::TG4VolumesFrames( TGTab* Tab, TGMainFrame* ActionFrame)
 { 
 //---> creates the volumes properties display frame
 //---> and plunges it into the main frame
-   TGCompositeFrame* Parent = Tab->AddTab("Volumes Properties");
-   fCapFrame = new TGCompositeFrame(Parent, 60, 20, kHorizontalFrame);
+   TGCompositeFrame* parent = Tab->AddTab("Volumes Properties");
+   fCapFrame = new TGCompositeFrame(parent, 60, 20, kHorizontalFrame);
    ULong_t back= TGFrame::GetBlackPixel(); 
    fCapFrame->ChangeBackground(back);
    fVolSubframe1 = new TGCompositeFrame(fCapFrame, 60, 20, kVerticalFrame);
@@ -85,7 +85,7 @@ TG4VolumesFrames::TG4VolumesFrames( TGTab* Tab, TGMainFrame* ActionFrame)
      fCapFrame->AddFrame(fVolSubframe1,fVolFrameLayout);  
      fCapFrame->AddFrame(fVolSubframe2,fVolFrameLayout);
 // going to the main frame     
-     Parent->AddFrame(fCapFrame, fVolFrameLayout);
+     parent->AddFrame(fCapFrame, fVolFrameLayout);
 }
 
 TG4VolumesFrames::TG4VolumesFrames(const TG4VolumesFrames& vf)