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

From Bertrand:

fix for TSystemDirectory::SetDirectory(const char *name)
that did not change the directory anymore.


git-svn-id: http://root.cern.ch/svn/root/trunk@15449 27541ba8-7e3a-0410-8455-c3a389f83636
parent ebdd174b
No related merge requests found
// @(#)root/base:$Name: $:$Id: TSystemDirectory.h,v 1.8 2005/06/02 16:28:27 brun Exp $
// @(#)root/base:$Name: $:$Id: TSystemDirectory.h,v 1.9 2006/05/23 04:47:35 brun Exp $
// Author: Christian Bormann 13/10/97
/*************************************************************************
......@@ -65,8 +65,8 @@ public:
void DrawClass() const { }
TObject *DrawClone(Option_t *) const { return 0; }
void SetDrawOption(Option_t *) { }
void SetName(const char *) { }
void SetTitle(const char *) { }
void SetName(const char *name) { TSystemFile::SetName(name); }
void SetTitle(const char *title) { TSystemFile::SetTitle(title); }
void Delete(Option_t *) { }
void Copy(TObject & ) const { }
ClassDef(TSystemDirectory,0) //A system directory
......
// @(#)root/base:$Name: $:$Id: TSystemFile.h,v 1.3 2005/05/24 20:05:10 brun Exp $
// @(#)root/base:$Name: $:$Id: TSystemFile.h,v 1.4 2005/05/30 10:21:14 rdm Exp $
// Author: Rene Brun 26/06/96
/*************************************************************************
......@@ -54,8 +54,8 @@ public:
void DrawClass() const { }
TObject *DrawClone(Option_t *) const { return 0; }
void SetDrawOption(Option_t *) { }
void SetName(const char *) { }
void SetTitle(const char *) { }
void SetName(const char *name) { TNamed::SetName(name); }
void SetTitle(const char *title) { TNamed::SetTitle(title); }
void Delete(Option_t *) { }
void Copy(TObject & ) const { }
......
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