--- tutorials/demos.C.orig Mon Mar 8 21:33:36 1999 +++ tutorials/demos.C Thu Mar 11 03:03:14 1999 @@ -8,7 +8,7 @@ bar = new TControlBar("vertical", "Demos"); bar->AddButton("Help on Demos",".x demoshelp.C", "Click Here For Help on Running the Demos"); - bar->AddButton("browser", "{b = new TBrowser("Browser");}", "Start the ROOT Browser"); + bar->AddButton("browser", "{b = new TBrowser(\"Browser\");}", "Start the ROOT Browser"); bar->AddButton("framework", ".x framework.C", "An Example of Object Oriented User Interface"); bar->AddButton("first", ".x first.C", "An Example of Slide with Root"); bar->AddButton("hsimple", ".x hsimple.C", "An Example Creating Histograms/Ntuples on File"); --- tutorials/first.C.orig Mon Mar 8 21:33:36 1999 +++ tutorials/first.C Sat Mar 13 19:10:30 1999 @@ -23,7 +23,7 @@ t.DrawText(3,17,"Root > float x=5; float y=7;"); t.DrawText(3,16,"Root > x*sqrt(y)"); t.DrawText(3,14,"Root > for (int i=2;i<7;i++) printf(\"sqrt(%d) = %f\",i,sqrt(i));"); - t.DrawText(3,10,"Root > TF1 f1("f1",\"sin(x)/x\",0,10)"); + t.DrawText(3,10,"Root > TF1 f1(\"f1\",\"sin(x)/x\",0,10)"); t.DrawText(3, 9,"Root > f1.Draw()"); t.SetTextFont(81); t.SetTextSize(0.018);