mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-11-11 16:19:17 +05:00
Avoid calling FinishOperation() when operation is just started.
This commit is contained in:
parent
dc562ec459
commit
23318a595c
@ -59,6 +59,7 @@ void GEOM_Operation::startOperation()
|
||||
if ( !myIOperation->_is_nil() ) {
|
||||
try {
|
||||
myIOperation->StartOperation();
|
||||
setState( Running );
|
||||
}
|
||||
catch ( const SALOME::SALOME_Exception& e ) {
|
||||
SalomeApp_Tools:: QtCatchCorbaException( e );
|
||||
@ -74,9 +75,13 @@ void GEOM_Operation::commitOperation()
|
||||
{
|
||||
SUIT_Operation::commitOperation();
|
||||
|
||||
if ( state() != Running )
|
||||
return;
|
||||
|
||||
if ( !myIOperation->_is_nil() ) {
|
||||
try {
|
||||
myIOperation->FinishOperation();
|
||||
setState( Waiting );
|
||||
}
|
||||
catch ( const SALOME::SALOME_Exception& e ) {
|
||||
SalomeApp_Tools:: QtCatchCorbaException( e );
|
||||
|
Loading…
Reference in New Issue
Block a user