]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Temporary solution because of problems with memory stack
authorvsv <vsv@opencascade.com>
Thu, 8 Dec 2011 15:11:31 +0000 (15:11 +0000)
committervsv <vsv@opencascade.com>
Thu, 8 Dec 2011 15:11:31 +0000 (15:11 +0000)
src/CAM/CAM_Application.cxx

index 8aa677e3cc3d87c5be2154bc24852360392797a8..c12317bc28d266c3d65507e872eefd325945d0f7 100755 (executable)
@@ -387,7 +387,8 @@ bool CAM_Application::activateModule( const QString& modName )
 
   // VSR 25/10/2011: prevent nested activation/deactivation
   // See issues 0021307, 0021373
-  BusyLocker lock( myBlocked );
+  //BusyLocker lock( myBlocked );
+  myBlocked = true;
 
   bool res = false;
   if ( !modName.isEmpty() )
@@ -405,6 +406,7 @@ bool CAM_Application::activateModule( const QString& modName )
   else
     res = activateModule( 0 );
 
+  myBlocked = false;
   return res;
 }