mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-27 12:40:32 +05:00
52542: TC7.5.0: Hypothesis "Distribution of layers" is missed
This commit is contained in:
parent
ee4749bf4c
commit
add89bac19
@ -404,8 +404,8 @@ bool SMESHGUI_MeshOp::isSubshapeOk() const
|
|||||||
|
|
||||||
//================================================================================
|
//================================================================================
|
||||||
/*!
|
/*!
|
||||||
* \brief Return name of the algorithm that does not support submeshes and makes
|
* \brief Return name of the algorithm that does not support sub-meshes and makes
|
||||||
* submesh creation useless
|
* sub-mesh creation useless
|
||||||
* \retval char* - string is to be deleted!!!
|
* \retval char* - string is to be deleted!!!
|
||||||
*/
|
*/
|
||||||
//================================================================================
|
//================================================================================
|
||||||
|
@ -161,8 +161,9 @@ bool SMESHGUI_XmlHandler::startElement (const QString&, const QString&,
|
|||||||
for ( int i = 0; i < NB_ATTRIBUTES; ++i ) {
|
for ( int i = 0; i < NB_ATTRIBUTES; ++i ) {
|
||||||
QString aStr = atts.value( name[i] );
|
QString aStr = atts.value( name[i] );
|
||||||
if ( !aStr.isEmpty() ) {
|
if ( !aStr.isEmpty() ) {
|
||||||
aStr = aStr.trimmed();
|
attr[i] = aStr.split( ',', QString::SkipEmptyParts );
|
||||||
attr[ i ] = aStr.split( ',', QString::SkipEmptyParts );
|
for ( int j = 0; j < attr[i].count(); ++j )
|
||||||
|
attr[i][j] = attr[i][j].trimmed();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user