Changeset 144 for trunk/orca/qt
- Timestamp:
- 05/11/06 14:23:03 (3 years ago)
- Location:
- trunk/orca/qt
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/qt/main.cpp
r108 r144 48 48 { 49 49 OIndex strN; 50 OValue* tos; 50 51 52 tos = orTOS; 51 53 strN = orMakeCString( argv[1], -1 ); 52 orResultFILE( strN ); 54 orSetTF(tos, OT_FILE ); 55 orSetSeries(tos, strN, 0 ); 53 56 54 orDoNative( orRESULT);57 orDoNative( tos ); 55 58 if( orErrorThrown ) 56 59 { … … 112 115 { 113 116 OValue* val; 114 val = or RESULT;117 val = orTOS; 115 118 if( (val->type != OT_UNSET) && 116 119 (val->type != OT_OBJECT) && -
trunk/orca/qt/qorca.cpp
r138 r144 689 689 if( orErrorThrown->error.msg == qEnv.atom_exec_exit ) 690 690 { 691 or ResultCopy(*(orErrorThrown + 1) );691 orCopyV( orTOS, *(orErrorThrown + 1) ); 692 692 orErrorClear; 693 693 return qEnv.atom_exec_exit; … … 695 695 else if( orErrorThrown->error.msg == qEnv.atom_close ) 696 696 { 697 or ResultCopy(*(orErrorThrown + 1) );697 orCopyV( orTOS, *(orErrorThrown + 1) ); 698 698 orErrorClear; 699 699 return qEnv.atom_close; … … 1272 1272 { 1273 1273 printf( "** qoInitEnv Error: " ); 1274 orPrintNative( or RESULT);1274 orPrintNative( orTOS ); 1275 1275 } 1276 1276
