mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-25 00:50:33 +05:00
Merge remote-tracking branch 'remotes/origin/hydro/imps_2017_salome_83' into HEAD
This commit is contained in:
commit
227f211520
@ -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