Skip to content
Snippets Groups Projects
Commit 040ca8f5 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

From Matevz:

Add mising ctor initializations.


git-svn-id: http://root.cern.ch/svn/root/trunk@19189 27541ba8-7e3a-0410-8455-c3a389f83636
parent 3e6781a1
No related branches found
No related tags found
No related merge requests found
// @(#)root/gl:$Name$:$Id$
// @(#)root/gl:$Name: $:$Id: TF2GL.cxx,v 1.1 2007/06/23 21:23:21 brun Exp $
// Author: Matevz Tadel, Jun 2007
/*************************************************************************
......@@ -31,7 +31,7 @@
ClassImp(TF2GL)
TF2GL::TF2GL() : TGLObject(), fM(0)
TF2GL::TF2GL() : TGLObject(), fM(0), fH(0)
{
// Constructor.
......
// @(#)root/gl:$Name$:$Id$
// @(#)root/gl:$Name: $:$Id: TH2GL.cxx,v 1.1 2007/06/23 21:23:22 brun Exp $
// Author: Matevz Tadel, Jun 2007
/*************************************************************************
......@@ -32,7 +32,7 @@
ClassImp(TH2GL)
TH2GL::TH2GL() : TGLObject(), fM(0)
TH2GL::TH2GL() : TGLObject(), fM(0), fPlotPainter(0)
{
// Constructor.
......@@ -63,8 +63,6 @@ Bool_t TH2GL::SetModel(TObject* obj, const Option_t* opt)
fPlotPainter = new TGLIsoPainter(fM, 0, &fCoord);
else if (option.Index("box") != kNPOS)
fPlotPainter = new TGLBoxPainter(fM, 0, &fCoord);
// else if (option.Index("tf3") != kNPOS)
// fPlotPainter = new TGLTF3Painter(fF3, fM, 0, &fCoord);
else if (option.Index("surf") != kNPOS)
fPlotPainter = new TGLSurfacePainter(fM, 0, &fCoord);
else
......
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