Ignore:
Timestamp:
06/16/08 15:58:28 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mbase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MLog.cc

    r8957 r8965  
    11/* ======================================================================== *\
    2 ! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.60 2008-06-14 15:55:50 tbretz Exp $
     2! $Name: not supported by cvs2svn $:$Id: MLog.cc,v 1.61 2008-06-16 14:58:27 tbretz Exp $
    33! --------------------------------------------------------------------------
    44!
     
    832832    gLog << std::flush;
    833833
     834    const Int_t store = gLog.GetOutputLevel();
     835
    834836    if (level >= kInfo)
    835837       gLog << inf;
     
    842844
    843845    gLog << std::flush;
     846
     847    gLog.SetOutputLevel(store);
    844848    if (!abort)
    845849        return;
     
    848852    if (gSystem) {
    849853        gSystem->StackTrace();
     854        gLog.SetOutputLevel(store);
    850855        gSystem->Abort();
    851     } else
     856    }
     857    else
     858    {
     859        gLog.SetOutputLevel(store);
    852860        ::abort();
     861    }
    853862}
    854863
  • trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc

    r8962 r8965  
    10481048        TCanvas *c = new TCanvas("", title?title:"", -cw, ch);
    10491049        c->SetName(name);
     1050        c->SetFillColor(10); // White
     1051        c->SetFrameBorderMode(0);
     1052        c->SetBorderMode(0);
    10501053        fBatch->Add(c);
    10511054
     
    10621065
    10631066    // 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);
    10651068    f->AddFrame(ec, fLayCanvas);
    10661069    fList->Add(ec);
     
    10721075        c.SetTitle(title);
    10731076
    1074     c.SetFillColor(16/*165*//*17*//*203*/);
     1077    c.SetFillColor(10); // White
    10751078    c.SetFrameBorderMode(0);
    10761079    c.SetBorderMode(0);
Note: See TracChangeset for help on using the changeset viewer.