[apps/calculation] AdditionalOutputs: TrigonometryGraphCell change

member name
This commit is contained in:
Émilie Feral
2020-01-07 11:26:37 +01:00
committed by Léa Saviot
parent f52f25e491
commit 6f3bf2f570
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ namespace Calculation {
TrigonometryGraphView::TrigonometryGraphView(TrigonometryModel * model) :
CurveView(model),
m_angle(model)
m_model(model)
{
}

View File

@@ -12,7 +12,7 @@ public:
void drawRect(KDContext * ctx, KDRect rect) const override;
private:
char * label(Axis axis, int index) const override { return nullptr; }
TrigonometryModel * m_angle;
TrigonometryModel * m_model;
};
class TrigonometryGraphCell : public HighlightCell {