cleanup: turn protected into private members

Some profilewidget classes hat protected members which can
be made private as there is no subclassing.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2020-04-13 19:41:30 +02:00 committed by Dirk Hohndel
parent fc697538fa
commit ebb342c969
4 changed files with 8 additions and 14 deletions

View file

@ -21,9 +21,8 @@ public:
void setPlotInfo(const struct plot_info &info);
void recalculate();
protected:
void mouseMoveEvent(QGraphicsSceneMouseEvent *event) override;
private:
void mouseMoveEvent(QGraphicsSceneMouseEvent *event) override;
struct plot_info pInfo;
int idx;
RulerItem2 *ruler;