Changeset 138 for trunk/src/octave
- Timestamp:
- Nov 13, 2005, 10:24:25 PM (19 years ago)
- Location:
- trunk/src/octave
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/octave/rpLibPutDouble.cc
r135 r138 61 61 if ( args(0).is_real_scalar() && 62 62 args(1).is_string() && 63 args(2).is_ string()&&63 args(2).is_real_scalar() && 64 64 args(3).is_real_scalar() ) { 65 65 -
trunk/src/octave/rpUnitsGetBasis.cc
r135 r138 63 63 retHandle = 64 64 storeObject_UnitsStr(myBasis->getUnitsName()); 65 // adjust error code 66 if (retHandle >= 0) { 67 err = 0; 68 } 65 } 66 67 // adjust error code 68 // if there is a basis retHandle will be a positive value 69 // if storing was successful. retHandle will be zero if 70 // storing failed. 71 // if there is no basis, myBasis will be null and 72 // retHandle will not change from its original negative 73 // value 74 if (retHandle != 0) { 75 err = 0; 69 76 } 70 77 }
Note: See TracChangeset
for help on using the changeset viewer.