GM:
Open « Test_log.hdf » on ftp
Post processing
Select â\80\9cTBEHâ\80\9d
Select â\80\9cLIQFLOWâ\80\9d point 1
Display
Change vertical axis by logarithmic
Remove points
V1.9a aborts.
{
if( Plot2d_Curve* aCurve = it.value() )
{
- pointList& aPointList = aCurve->getPointList();
- pointList::iterator pIt, pItEnd = aPointList.end();
- for( pIt = aPointList.begin(); pIt != pItEnd; )
+ QList<Plot2d_Point>& aPointList = aCurve->getPointList();
+ QList<Plot2d_Point>::iterator pIt;
+ for( pIt = aPointList.begin(); pIt != aPointList.end(); )
{
Plot2d_Point& aPoint = *pIt;
double& value = theIsXAxis ? aPoint.x : aPoint.y;