mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-26 17:30:35 +05:00
Merge branch 'hydro/imps_2017' into V8_3_BR
This commit is contained in:
commit
a2829b6eeb
@ -212,9 +212,13 @@ int CurveCreator_TreeViewModel::getPoint( const QModelIndex& theIndx ) const
|
||||
|
||||
void CurveCreator_TreeViewModel::setCurve( CurveCreator_ICurve* theCurve )
|
||||
{
|
||||
myCurve = theCurve;
|
||||
#if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
|
||||
myCurve = theCurve;
|
||||
reset();
|
||||
#else
|
||||
beginResetModel();
|
||||
myCurve = theCurve;
|
||||
endResetModel();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user