Changeset 8965 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 06/16/08 15:58:28 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MLog.cc
r8957 r8965 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.6 0 2008-06-14 15:55:50tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.61 2008-06-16 14:58:27 tbretz Exp $ 3 3 ! -------------------------------------------------------------------------- 4 4 ! … … 832 832 gLog << std::flush; 833 833 834 const Int_t store = gLog.GetOutputLevel(); 835 834 836 if (level >= kInfo) 835 837 gLog << inf; … … 842 844 843 845 gLog << std::flush; 846 847 gLog.SetOutputLevel(store); 844 848 if (!abort) 845 849 return; … … 848 852 if (gSystem) { 849 853 gSystem->StackTrace(); 854 gLog.SetOutputLevel(store); 850 855 gSystem->Abort(); 851 } else 856 } 857 else 858 { 859 gLog.SetOutputLevel(store); 852 860 ::abort(); 861 } 853 862 } 854 863 -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r8962 r8965 1048 1048 TCanvas *c = new TCanvas("", title?title:"", -cw, ch); 1049 1049 c->SetName(name); 1050 c->SetFillColor(10); // White 1051 c->SetFrameBorderMode(0); 1052 c->SetBorderMode(0); 1050 1053 fBatch->Add(c); 1051 1054 … … 1062 1065 1063 1066 // create root embedded canvas and add it to the tab 1064 TRootEmbeddedCanvas *ec = new TRootEmbeddedCanvas(name, f, f->GetWidth(), f->GetHeight(), 0);1067 TRootEmbeddedCanvas *ec = new TRootEmbeddedCanvas(name, f, f->GetWidth(), f->GetHeight(), kSunkenFrame); 1065 1068 f->AddFrame(ec, fLayCanvas); 1066 1069 fList->Add(ec); … … 1072 1075 c.SetTitle(title); 1073 1076 1074 c.SetFillColor(1 6/*165*//*17*//*203*/);1077 c.SetFillColor(10); // White 1075 1078 c.SetFrameBorderMode(0); 1076 1079 c.SetBorderMode(0);
Note:
See TracChangeset
for help on using the changeset viewer.