Skip to content
Snippets Groups Projects
Commit 106dd0fb authored by Rene Brun's avatar Rene Brun
Browse files

Fix coding conventions violations

git-svn-id: http://root.cern.ch/svn/root/trunk@15475 27541ba8-7e3a-0410-8455-c3a389f83636
parent ccdd916d
No related branches found
No related tags found
No related merge requests found
// @(#):$Name: $:$Id: TGeoPconEditor.cxx,v 1.1 2006/06/13 15:27:11 brun Exp $ // @(#):$Name: $:$Id: TGeoPconEditor.cxx,v 1.1 2006/06/19 14:58:48 brun Exp $
// Author: M.Gheata // Author: M.Gheata
/************************************************************************* /*************************************************************************
...@@ -291,8 +291,8 @@ void TGeoPconEditor::UpdateSections() ...@@ -291,8 +291,8 @@ void TGeoPconEditor::UpdateSections()
//______________________________________________________________________________ //______________________________________________________________________________
void TGeoPconEditor::DoName() void TGeoPconEditor::DoName()
{ {
// Perform name change // Perform name change
DoModified(); DoModified();
} }
//______________________________________________________________________________ //______________________________________________________________________________
......
// @(#):$Name: $:$Id: TGeoSphereEditor.cxx,v 1.1 2006/06/13 15:27:11 brun Exp $ // @(#):$Name: $:$Id: TGeoSphereEditor.cxx,v 1.2 2006/06/19 14:58:48 brun Exp $
// Author: M.Gheata // Author: M.Gheata
/************************************************************************* /*************************************************************************
...@@ -463,8 +463,8 @@ void TGeoSphereEditor::DoTheta2() ...@@ -463,8 +463,8 @@ void TGeoSphereEditor::DoTheta2()
//______________________________________________________________________________ //______________________________________________________________________________
void TGeoSphereEditor::DoTheta() void TGeoSphereEditor::DoTheta()
{ {
// Slot for theta slider. // Slot for theta slider.
if (!fLock) { if (!fLock) {
DoModified(); DoModified();
fLock = kTRUE; fLock = kTRUE;
fETheta1->SetNumber(fSTheta->GetMinPosition()); fETheta1->SetNumber(fSTheta->GetMinPosition());
......
// @(#):$Name: $:$Id: TGeoTabManager.cxx,v 1.1 2006/06/13 15:27:11 brun Exp $ // @(#):$Name: $:$Id: TGeoTabManager.cxx,v 1.2 2006/06/19 14:58:48 brun Exp $
// Author: M.Gheata // Author: M.Gheata
/************************************************************************* /*************************************************************************
...@@ -404,7 +404,7 @@ TObject *TGeoTreeDialog::fgSelectedObj = 0; ...@@ -404,7 +404,7 @@ TObject *TGeoTreeDialog::fgSelectedObj = 0;
TGeoTreeDialog::TGeoTreeDialog(TGFrame *caller, const TGWindow *main, UInt_t w, UInt_t h) TGeoTreeDialog::TGeoTreeDialog(TGFrame *caller, const TGWindow *main, UInt_t w, UInt_t h)
:TGTransientFrame(main, main, w, h) :TGTransientFrame(main, main, w, h)
{ {
// Ctor // Constructor
fgSelectedObj = 0; fgSelectedObj = 0;
TGCanvas *tgcv = new TGCanvas(this, 100, 200, kSunkenFrame | kDoubleBorder); TGCanvas *tgcv = new TGCanvas(this, 100, 200, kSunkenFrame | kDoubleBorder);
fLT = new TGListTree(tgcv->GetViewPort(), 100, 200); fLT = new TGListTree(tgcv->GetViewPort(), 100, 200);
...@@ -435,7 +435,7 @@ TGeoTreeDialog::TGeoTreeDialog(TGFrame *caller, const TGWindow *main, UInt_t w, ...@@ -435,7 +435,7 @@ TGeoTreeDialog::TGeoTreeDialog(TGFrame *caller, const TGWindow *main, UInt_t w,
//______________________________________________________________________________ //______________________________________________________________________________
TGeoTreeDialog::~TGeoTreeDialog() TGeoTreeDialog::~TGeoTreeDialog()
{ {
// Dtor // Destructor
} }
//______________________________________________________________________________ //______________________________________________________________________________
......
// @(#):$Name: $:$Id: TGeoTubeEditor.cxx,v 1.1 2006/06/13 15:27:11 brun Exp $ // @(#):$Name: $:$Id: TGeoTubeEditor.cxx,v 1.2 2006/06/19 14:58:48 brun Exp $
// Author: M.Gheata // Author: M.Gheata
/************************************************************************* /*************************************************************************
...@@ -441,7 +441,7 @@ void TGeoTubeSegEditor::SetModel(TVirtualPad* pad, TObject* obj, Int_t) ...@@ -441,7 +441,7 @@ void TGeoTubeSegEditor::SetModel(TVirtualPad* pad, TObject* obj, Int_t)
void TGeoTubeSegEditor::DoPhi1() void TGeoTubeSegEditor::DoPhi1()
{ {
// Slot for phi1. // Slot for phi1.
Double_t phi1 = fEPhi1->GetNumber(); Double_t phi1 = fEPhi1->GetNumber();
Double_t phi2 = fEPhi2->GetNumber(); Double_t phi2 = fEPhi2->GetNumber();
if (phi1 > 360-1.e-10) { if (phi1 > 360-1.e-10) {
phi1 = 0.; phi1 = 0.;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment