From: sln Date: Thu, 14 Jul 2005 10:00:11 +0000 (+0000) Subject: start of operation fixed X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8d19bce9dcc0af4561a4ba36cd15d3ba701931b0;p=modules%2Fgui.git start of operation fixed --- diff --git a/src/SUIT/SUIT_Study.cxx b/src/SUIT/SUIT_Study.cxx index f3095eaf5..6612f5bce 100755 --- a/src/SUIT/SUIT_Study.cxx +++ b/src/SUIT/SUIT_Study.cxx @@ -213,10 +213,11 @@ bool SUIT_Study::start( SUIT_Operation* theOp, const bool toCheck ) anOp->setState( SUIT_Operation::Suspended ); } - theOp->startOperation(); - myOperations.append( theOp ); theOp->setState( SUIT_Operation::Running ); + myOperations.append( theOp ); emit theOp->started( theOp ); + theOp->startOperation(); + return true; }