Changeset 25 for trunk/orca/gl/gx.c

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/gl/gx.c

    r1 r25  
    197197                iv[ INPUT_MY ].integer   = gView->height - event->y - 1; 
    198198 
    199                 orEvalBlock( orBLOCKS + blkV->index, blkV->series.index ); 
     199                orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 
    200200                gxHandleError(); 
    201201            } 
     
    214214                iv[ INPUT_MY ].integer   = gView->height - event->y - 1; 
    215215 
    216                 orEvalBlock( orBLOCKS + blkV->index, blkV->series.index ); 
     216                orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 
    217217                gxHandleError(); 
    218218            } 
     
    244244                } 
    245245 
    246                 orEvalBlock( orBLOCKS + blkV->index, blkV->series.index ); 
     246                orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 
    247247                gxHandleError(); 
    248248            } 
     
    262262                iv[ INPUT_DY ].integer = event->y; 
    263263 
    264                 orEvalBlock( orBLOCKS + blkV->index, blkV->series.index ); 
     264                orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 
    265265                gxHandleError(); 
    266266            } 
     
    276276                if( hval ) 
    277277                { 
    278                     orEvalBlock( orBLOCKS + hval->index, hval->series.index ); 
     278                    orEvalBlock( orBLOCKS + hval->index, hval->series.it ); 
    279279                    gxHandleError(); 
    280280                } 
     
    291291                if( hval ) 
    292292                { 
    293                     orEvalBlock( orBLOCKS + hval->index, hval->series.index ); 
     293                    orEvalBlock( orBLOCKS + hval->index, hval->series.it ); 
    294294                    gxHandleError(); 
    295295                } 
     
    662662    orArrayInit( &prog, sizeof(RenderWord), blk->used ); 
    663663 
    664     error = compileProg( blk->values + a1->series.index, 
     664    error = compileProg( blk->values + a1->series.it, 
    665665                         blk->values + blk->used, &prog ); 
    666666    if( error ) 
     
    14801480void keyHandlerNative( OValue* a1 ) 
    14811481{ 
    1482     if( validKeyHandlerBlock( a1->index, a1->series.index ) ) 
    1483     { 
    1484         OBlock* blk2 = orCopyBlock( a1->index, a1->series.index, 0 ); 
     1482    if( validKeyHandlerBlock( a1->index, a1->series.it ) ) 
     1483    { 
     1484        OBlock* blk2 = orCopyBlock( a1->index, a1->series.it, 0 ); 
    14851485        mapKeyAtoms( blk2 ); 
    14861486        orSetSeries( a1, orBlockN(blk2), 0 );