Changeset 25 for trunk/orca/gl/gx.c
- Timestamp:
- 02/06/06 23:30:15 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/gl/gx.c (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/gl/gx.c
r1 r25 197 197 iv[ INPUT_MY ].integer = gView->height - event->y - 1; 198 198 199 orEvalBlock( orBLOCKS + blkV->index, blkV->series.i ndex);199 orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 200 200 gxHandleError(); 201 201 } … … 214 214 iv[ INPUT_MY ].integer = gView->height - event->y - 1; 215 215 216 orEvalBlock( orBLOCKS + blkV->index, blkV->series.i ndex);216 orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 217 217 gxHandleError(); 218 218 } … … 244 244 } 245 245 246 orEvalBlock( orBLOCKS + blkV->index, blkV->series.i ndex);246 orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 247 247 gxHandleError(); 248 248 } … … 262 262 iv[ INPUT_DY ].integer = event->y; 263 263 264 orEvalBlock( orBLOCKS + blkV->index, blkV->series.i ndex);264 orEvalBlock( orBLOCKS + blkV->index, blkV->series.it ); 265 265 gxHandleError(); 266 266 } … … 276 276 if( hval ) 277 277 { 278 orEvalBlock( orBLOCKS + hval->index, hval->series.i ndex);278 orEvalBlock( orBLOCKS + hval->index, hval->series.it ); 279 279 gxHandleError(); 280 280 } … … 291 291 if( hval ) 292 292 { 293 orEvalBlock( orBLOCKS + hval->index, hval->series.i ndex);293 orEvalBlock( orBLOCKS + hval->index, hval->series.it ); 294 294 gxHandleError(); 295 295 } … … 662 662 orArrayInit( &prog, sizeof(RenderWord), blk->used ); 663 663 664 error = compileProg( blk->values + a1->series.i ndex,664 error = compileProg( blk->values + a1->series.it, 665 665 blk->values + blk->used, &prog ); 666 666 if( error ) … … 1480 1480 void keyHandlerNative( OValue* a1 ) 1481 1481 { 1482 if( validKeyHandlerBlock( a1->index, a1->series.i ndex) )1483 { 1484 OBlock* blk2 = orCopyBlock( a1->index, a1->series.i ndex, 0 );1482 if( validKeyHandlerBlock( a1->index, a1->series.it ) ) 1483 { 1484 OBlock* blk2 = orCopyBlock( a1->index, a1->series.it, 0 ); 1485 1485 mapKeyAtoms( blk2 ); 1486 1486 orSetSeries( a1, orBlockN(blk2), 0 );
