PDA

View Full Version : setPlotLayout() issue qwt 6.1.0



Cah
21st January 2014, 01:47
I made the changes shown below...

void QwtPlot::setPlotLayout( QwtPlotLayout *layout )
{
if ( layout != d_data->layout )
{
delete d_data->layout;
//layout = d_data->layout; //Removed
d_data->layout = layout; //Added

updateLayout();
}
}
Is it my source only... It may very well be.
I just want to be sure..

Thanks

freshairfly
21st January 2014, 05:37
Absolutely, you are right.

Uwe
21st January 2014, 07:36
I just want to be sure.
Yes of course: fixed in SVN ( trunk and 6.1 ).

Uwe