Commit c5033632 authored by Bryant Mairs's avatar Bryant Mairs

Update Qwt6.x update for QGCXYPlot.cc as QwtDoubleRectno longer exists

parent 514ef5ca
......@@ -110,10 +110,10 @@ public:
double yMin() const { return ymin; }
double yMax() const { return ymax; }
virtual QwtDoubleRect boundingRect() const {
virtual QRectF boundingRect() const {
if(!minMaxSet)
return QwtDoubleRect(1,1,-2,-2);
return QwtDoubleRect(xmin,ymin,xmax-xmin,ymax-ymin);
return QRectF(1,1,-2,-2);
return QRectF(xmin,ymin,xmax-xmin,ymax-ymin);
}
/* From QwtPlotItem. Draw the complete series */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment