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

Legend:

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

    r2178 r2180  
    675675
    676676    // layout and map new tab
    677 #if ROOT_VERSION_CODE < ROOT_VERSION(3,03,00)
     677//#if ROOT_VERSION_CODE < ROOT_VERSION(3,03,00)
    678678    MapSubwindows();
    679679    Layout();
    680 #else
    681     Layout();
    682     MapSubwindows();
    683 #endif
     680//#else
     681//    Layout();
     682//    MapSubwindows();
     683//#endif
    684684
    685685    // display new tab in the main frame
     
    14351435    const TString newstr("%%DocumentPaperSizes: a4\n%%Orientation: Landscape");
    14361436
    1437     // gcc 3.2:
    1438     /*
    1439     fstream f(name, ios::in|ios::out|ios::nocreate);
     1437    /* FIXME: Does gcc 2.95 need this flag, too? |ios::nocreate */
     1438    fstream f(name, ios::in|ios::out);
    14401439
    14411440    TString str;
    14421441    f >> str;
    14431442
    1444     streampos p = f.tellg()+1;
     1443    const streampos p = f.tellg();
    14451444
    14461445    char *c1 = new char[newstr.Length()];
     
    14501449
    14511450    f.seekp(p);
     1451    f.seekp(1, ios::cur);
    14521452
    14531453    f << newstr;
     
    14551455    while (1)
    14561456    {
    1457         streampos p1 = f.tellg();
     1457        const streampos p1 = f.tellg();
    14581458        f.read(c2, newstr.Length());
    1459         streampos p2 = f.tellg();
     1459        const streampos p2 = f.tellg();
    14601460        f.seekp(p1);
    14611461        if (f)
     
    14741474    delete c2;
    14751475    delete c1;
    1476     */
    14771476}
    14781477
Note: See TracChangeset for help on using the changeset viewer.