diff --git a/src/IFSelect/IFSelect_WorkSession.cdl b/src/IFSelect/IFSelect_WorkSession.cdl index 0ff29586d9..8646e7b72c 100755 --- a/src/IFSelect/IFSelect_WorkSession.cdl +++ b/src/IFSelect/IFSelect_WorkSession.cdl @@ -819,8 +819,13 @@ is -- -- The Model and File Modifiers recorded to be applied on sending -- files are. - -- Returns a status of execution : Done if OK, Void if no def. - -- available, Error if errors occured, Fail if no file written + -- Returns a status of execution : + -- Done if OK, + -- Void if no data available, + -- Error if errors occured (work library is not defined), errors + -- during translation + -- Fail if exception during translation is raised + -- Stop if no disk space or disk, file is write protected -- Fills LastRunCheckList SendSelected (me : mutable; filename : CString; sel : Selection; diff --git a/src/IFSelect/IFSelect_WorkSession.cxx b/src/IFSelect/IFSelect_WorkSession.cxx index c0a7d21470..06f5beaeb5 100755 --- a/src/IFSelect/IFSelect_WorkSession.cxx +++ b/src/IFSelect/IFSelect_WorkSession.cxx @@ -2488,7 +2488,11 @@ IFSelect_ReturnStatus IFSelect_WorkSession::SendAll } } else checks = thecopier->SendAll(filename,thegraph->Graph(),thelibrary,theprotocol); - + Handle_Interface_Check aMainFail = checks.CCheck(0); + if (!aMainFail.IsNull() && aMainFail->HasFailed ()) + { + return IFSelect_RetStop; + } if (theloaded.Length() == 0) theloaded.AssignCat(filename); thecheckrun = checks; if (checks.IsEmpty(Standard_True)) return IFSelect_RetDone; diff --git a/src/XSDRAWSTEP/XSDRAWSTEP.cxx b/src/XSDRAWSTEP/XSDRAWSTEP.cxx index 4136c3004c..c65339da71 100755 --- a/src/XSDRAWSTEP/XSDRAWSTEP.cxx +++ b/src/XSDRAWSTEP/XSDRAWSTEP.cxx @@ -423,7 +423,8 @@ static Standard_Integer stepwrite (Draw_Interpretor& di, Standard_Integer argc, switch (stat) { case IFSelect_RetVoid : di<<"No file written"<<"\n"; break; case IFSelect_RetDone : di<<"File "<EndScope();