Skip to content

Commit

Permalink
Fix for older Qwt versions that have a method as protected.
Browse files Browse the repository at this point in the history
We simply defines a pass through method.
Refs #10639
  • Loading branch information
martyngigg committed Nov 28, 2014
1 parent 13aa83f commit 867e843
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Code/Mantid/MantidPlot/src/Plot.h
Expand Up @@ -101,6 +101,8 @@ class Plot: public QwtPlot
void updateLayout();

void updateCurveLabels();
// pass through method that is public on the base class in later qwt versions
void updateAxes() { QwtPlot::updateAxes(); }

void reverseCurveOrder(); // Created in connection with waterfall plots. Called from Graph method of same name.

Expand Down

0 comments on commit 867e843

Please sign in to comment.