Ignore:
Timestamp:
06/23/03 13:59:48 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mmain/MStatusDisplay.cc

    r2214 r2215  
    504504    fFont = gVirtualX->LoadQueryFont("7x13bold");
    505505
    506     fBatch.SetOwner();
     506    fBatch = new TList;
     507    fBatch->SetOwner();
    507508
    508509    //
     
    563564
    564565    delete fList;
     566    delete fBatch;
    565567
    566568    if (fFont)
     
    605607{
    606608    if (gROOT->IsBatch())
    607         return (TCanvas*)fBatch.At(i-1);
     609        return (TCanvas*)fBatch->At(i-1);
    608610
    609611    if (i<0 || i>=fTab->GetNumberOfTabs())
     
    672674    {
    673675        TCanvas *c = new TCanvas(name, name);
    674         fBatch.Add(c);
     676        fBatch->Add(c);
    675677        return *c;
    676678    }
     
    832834{
    833835    if (gROOT->IsBatch())
    834         return (Bool_t)fBatch.FindObject(c);
     836        return (Bool_t)fBatch->FindObject(c);
    835837
    836838    for (int i=1; i<fTab->GetNumberOfTabs(); i++)
     
    13411343        return 0;
    13421344    }
    1343     if (gROOT->IsBatch() && num>fBatch.GetSize())
     1345    if (gROOT->IsBatch() && num>fBatch->GetSize())
    13441346    {
    13451347        *fLog << warn << "MStatusDisplay::Write: Tab doesn't exist... skipped." << endl;
     
    13491351    TObjArray list;
    13501352
    1351     const Int_t max  = gROOT->IsBatch() ? fBatch.GetSize()+1 : fTab->GetNumberOfTabs();
     1353    const Int_t max  = gROOT->IsBatch() ? fBatch->GetSize()+1 : fTab->GetNumberOfTabs();
    13521354    const Int_t from = num<0 ?   1 : num;
    13531355    const Int_t to   = num<0 ? max : num+1;
     
    14471449{
    14481450    if (gROOT->IsBatch())
    1449         return num>0 && num<=fBatch.GetSize() || num<0;
     1451        return num>0 && num<=fBatch->GetSize() || num<0;
    14501452
    14511453    if (num>=fTab->GetNumberOfTabs())
     
    15731575    // Maintain tab numbers
    15741576    //
    1575     const Int_t max  = gROOT->IsBatch() ? fBatch.GetSize()+1 : fTab->GetNumberOfTabs();
     1577    const Int_t max  = gROOT->IsBatch() ? fBatch->GetSize()+1 : fTab->GetNumberOfTabs();
    15761578    const Int_t from = num<0 ?   1 : num;
    15771579    const Int_t to   = num<0 ? max : num+1;
Note: See TracChangeset for help on using the changeset viewer.