X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FStdMeshersGUI%2FStdMeshersGUI_DistrPreview.cxx;h=b2a4be767840dad93c5e64ade4d0c42349d23f09;hp=81bfcacf5945ada7c7ad7b5e461c428a0f3c60c5;hb=61bac50f78623aabd9e4ddbcbba072c63ea02165;hpb=6d32f944a0a115b6419184c50b57bf7c4eef5786 diff --git a/src/StdMeshersGUI/StdMeshersGUI_DistrPreview.cxx b/src/StdMeshersGUI/StdMeshersGUI_DistrPreview.cxx index 81bfcacf5..b2a4be767 100644 --- a/src/StdMeshersGUI/StdMeshersGUI_DistrPreview.cxx +++ b/src/StdMeshersGUI/StdMeshersGUI_DistrPreview.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2019 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2021 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -320,13 +320,8 @@ void StdMeshersGUI_DistrPreview::update() setAxisScale( myDensity->xAxis(), min_x, max_x ); setAxisScale( myDensity->yAxis(), -#ifdef WIN32 - min( 0.0, min_y ), - max( 0.0, max_y ) -#else std::min( 0.0, min_y ), std::max( 0.0, max_y ) -#endif ); myDensity->setSamples( x, y, size ); if( x ) @@ -351,7 +346,7 @@ void StdMeshersGUI_DistrPreview::update() try { OCC_CATCH_SIGNALS; replot(); - } catch(Standard_Failure) { + } catch(Standard_Failure&) { } } @@ -397,7 +392,7 @@ bool StdMeshersGUI_DistrPreview::init( const QString& str ) OCC_CATCH_SIGNALS; myExpr = ExprIntrp_GenExp::Create(); myExpr->Process( ( Standard_CString ) str.toLatin1().data() ); - } catch(Standard_Failure) { + } catch(Standard_Failure&) { parsed_ok = false; } @@ -435,7 +430,7 @@ double StdMeshersGUI_DistrPreview::calc( bool& ok ) try { OCC_CATCH_SIGNALS; res = myExpr->Expression()->Evaluate( myVars, myValues ); - } catch(Standard_Failure) { + } catch(Standard_Failure&) { ok = false; res = 0.0; } @@ -462,7 +457,7 @@ bool StdMeshersGUI_DistrPreview::convert( double& v ) const // if(v < -7) v = -7.0; v = pow( 10.0, v ); - } catch(Standard_Failure) { + } catch(Standard_Failure&) { v = 0.0; ok = false; }