Salome HOME
projects
/
modules
/
smesh.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5218291
)
C++98 compatibility (remove C++11 staff)
author
vsr
<vsr@opencascade.com>
Sat, 20 Feb 2016 07:20:57 +0000
(10:20 +0300)
committer
vsr
<vsr@opencascade.com>
Sat, 20 Feb 2016 07:20:57 +0000
(10:20 +0300)
src/SMESHGUI/SMESHGUI_Selection.cxx
patch
|
blob
|
history
diff --git
a/src/SMESHGUI/SMESHGUI_Selection.cxx
b/src/SMESHGUI/SMESHGUI_Selection.cxx
index
8c12c81
..
9895612
100644
(file)
--- a/
src/SMESHGUI/SMESHGUI_Selection.cxx
+++ b/
src/SMESHGUI/SMESHGUI_Selection.cxx
@@
-247,7
+247,7
@@
bool SMESHGUI_Selection::isQuadratic( int ind ) const
if ( idSource->_is_nil() )
return false;
SMESHGUI_ConvToQuadOp::MeshDestinationType meshTgtType = SMESHGUI_ConvToQuadOp::DestinationMesh( idSource );
- if ( meshTgtType & SMESHGUI_ConvToQuadOp::
MeshDestinationType::
Linear )
+ if ( meshTgtType & SMESHGUI_ConvToQuadOp::Linear )
return true;
return false;
}