Changeset 25 for trunk/orca/qt/qorca.cpp

Show
Ignore:
Timestamp:
02/06/06 23:30:15 (3 years ago)
Author:
krobillard
Message:

series which/index renamed to n/it.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/qt/qorca.cpp

    r18 r25  
    222222        { 
    223223            OString* str = orSTRING(it); 
    224             const char* cp = str->charArray + it->series.index; 
     224            const char* cp = str->charArray + it->series.it; 
    225225            combo->addItem( cp ); 
    226226        } 
     
    239239    QWidget* wid = new QWidget; 
    240240 
    241     lo = qoLayout( layout, it->index, it->series.index ); 
     241    lo = qoLayout( layout, it->index, it->series.it ); 
    242242    wid->setLayout( lo ); 
    243243 
     
    255255        { 
    256256            OString* str = orSTRING(it); 
    257             label = str->charArray + it->series.index; 
     257            label = str->charArray + it->series.it; 
    258258        } 
    259259        else if( it->type == OT_WORD ) 
     
    369369 
    370370                val = cbp.values + 1; 
    371                 qoLayout( lo, val->index, val->series.index ); 
     371                qoLayout( lo, val->index, val->series.it ); 
    372372            } 
    373373                break; 
     
    435435                { 
    436436                    OBlock* blk = orBLOCK(val); 
    437                     OValue* it  = blk->values + val->series.index; 
     437                    OValue* it  = blk->values + val->series.it; 
    438438                    OValue* end = blk->values + blk->used; 
    439439                    while( it != end ) 
     
    463463                val = cbp.values + 1; 
    464464                OBlock* blk = orBLOCK( val ); 
    465                 tabWidgetBlock( pw, blk->values + val->series.index, 
     465                tabWidgetBlock( pw, blk->values + val->series.it, 
    466466                                    blk->values + blk->used ); 
    467467            } 
     
    538538 
    539539                LayoutInfo lo2; 
    540                 pw->setLayout( qoLayout(lo2, val->index, val->series.index) ); 
     540                pw->setLayout( qoLayout(lo2, val->index, val->series.it) ); 
    541541            } 
    542542                break; 
     
    610610 
    611611                ++val; 
    612                 qoLayout( lo, val->index, val->series.index ); 
     612                qoLayout( lo, val->index, val->series.it ); 
    613613                break; 
    614614 
     
    778778    qEnv.curWidget = wid; 
    779779 
    780     lo = qoLayout( li, a1->index, a1->series.index ); 
     780    lo = qoLayout( li, a1->index, a1->series.it ); 
    781781 
    782782    qEnv.curWidget = saveWidget; 
     
    12811281void ExeBlock::setBlock( OValue* val ) 
    12821282{ 
    1283     n     = val->series.which; 
    1284     index = val->series.index;  
     1283    n     = val->series.n; 
     1284    index = val->series.it;  
    12851285    hold  = orHold( OT_BLOCK, n ); 
    12861286} 
     
    13051305                if( it->type == OT_BLOCK ) 
    13061306                { 
    1307                     orEvalBlock( orBlockPtr( it->series.which ), 
    1308                                  it->series.index ); 
     1307                    orEvalBlock( orBlockPtr( it->series.n ), it->series.it ); 
    13091308                    qoError(); 
    13101309                    return;