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

G__process_cmd() has two new arguments in CINT 5.14.46. For the time

being they not used in ProcessLine() yet.


git-svn-id: http://root.cern.ch/svn/root/trunk@476 27541ba8-7e3a-0410-8455-c3a389f83636
parent d363b312
No related branches found
No related tags found
No related merge requests found
// @(#)root/meta:$Name: $:$Id: TCint.cxx,v 1.3 2000/06/19 23:36:12 rdm Exp $ // @(#)root/meta:$Name: $:$Id: TCint.cxx,v 1.4 2000/06/20 06:47:05 brun Exp $
// Author: Fons Rademakers 01/03/96 // Author: Fons Rademakers 01/03/96
/************************************************************************* /*************************************************************************
...@@ -216,7 +216,7 @@ Int_t TCint::ProcessLine(const char *line) ...@@ -216,7 +216,7 @@ Int_t TCint::ProcessLine(const char *line)
if (strstr(line,fantomline)) if (strstr(line,fantomline))
TCint::UpdateAllCanvases(); TCint::UpdateAllCanvases();
else else
ret = G__process_cmd((char *)line, fPrompt, &fMore); ret = G__process_cmd((char *)line, fPrompt, &fMore, 0, 0);
gROOT->SetLineHasBeenProcessed(); gROOT->SetLineHasBeenProcessed();
} else } else
ret = ProcessLineAsynch(line); ret = ProcessLineAsynch(line);
...@@ -381,7 +381,7 @@ void TCint::UpdateListOfGlobals() ...@@ -381,7 +381,7 @@ void TCint::UpdateListOfGlobals()
gROOT->fGlobals->Add(new TGlobal(a)); gROOT->fGlobals->Add(new TGlobal(a));
} }
} }
} }
//______________________________________________________________________________ //______________________________________________________________________________
void TCint::UpdateListOfGlobalFunctions() void TCint::UpdateListOfGlobalFunctions()
...@@ -403,7 +403,7 @@ void TCint::UpdateListOfGlobalFunctions() ...@@ -403,7 +403,7 @@ void TCint::UpdateListOfGlobalFunctions()
gROOT->fGlobalFunctions->Add(new TFunction(a)); gROOT->fGlobalFunctions->Add(new TFunction(a));
} }
} }
} }
//______________________________________________________________________________ //______________________________________________________________________________
void TCint::UpdateListOfTypes() void TCint::UpdateListOfTypes()
...@@ -456,7 +456,7 @@ void TCint::CreateListOfBaseClasses(TClass *cl) ...@@ -456,7 +456,7 @@ void TCint::CreateListOfBaseClasses(TClass *cl)
if (t.IsValid() && t.Name()) { if (t.IsValid() && t.Name()) {
a = new G__BaseClassInfo(t); a = new G__BaseClassInfo(t);
cl->fBase->Add(new TBaseClass(a, cl)); cl->fBase->Add(new TBaseClass(a, cl));
} }
} }
} }
} }
......
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