]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
Update environment of windows version:
authorabd <abd@opencascade.com>
Wed, 20 Jun 2007 13:28:26 +0000 (13:28 +0000)
committerabd <abd@opencascade.com>
Wed, 20 Jun 2007 13:28:26 +0000 (13:28 +0000)
- products;
- projects.

First correction of SalomeExceptionHandler functionality on Windows

Porting current version of BR_Dev_For_4_0 branch on Windows.
First stable Windows version of BR_Dev_For_4_0  branch.

src/SalomeApp/SalomeApp_ExceptionHandler.cxx

index 90de9c62d4bf2fb67744899e5af644bf11cb3b04..dc6436411dcc5c7b6817b8aec22e42de9636a4e2 100644 (file)
@@ -98,13 +98,14 @@ bool SalomeApp_ExceptionHandler::handle( QObject* o, QEvent* e )
 }
 
 /*!Create new SUIT_ExceptionHandler*/
+
 extern "C" SALOMEAPP_EXPORT SUIT_ExceptionHandler* getExceptionHandler()
 {
   // MSV 2006-04-26: work around PAL12004 "VTK window => SIGFPE Arithmetic Exception Detected"
   // We disable FPE signal as it was in earlier versions of SALOME. It is enabled
   // only in debug mode if the environment variable DISABLE_FPE is not set to 1.
   bool raiseFPE;
-#ifdef _DEBUG_
+#if defined(_DEBUG_) | defined(_DEBUG) //the Last for WNT default settings
   raiseFPE = true;
   char* envDisableFPE = getenv("DISABLE_FPE");
   if (envDisableFPE && atoi(envDisableFPE))