[apps/sequence] Fix method that should be virtual pure

The following scenaro crashed in DEBUG=1 and did not resize the window
correctly in DEBUG=0.
Got to sequence
u(n)=n
Go to sequence/graph
Remove yAuto
Go to sequence/list
v(n) = cos(n)
remove u(n)
Go to sequence/graph
This commit is contained in:
Léa Saviot
2018-11-30 17:33:39 +01:00
parent de3d200b81
commit 531b555949
3 changed files with 7 additions and 1 deletions

View File

@@ -29,6 +29,10 @@ TermSumController * GraphController::termSumController() {
return &m_termSumController;
}
int GraphController::numberOfCurves() const {
return m_sequenceStore->numberOfModels();
}
BannerView * GraphController::bannerView() {
return &m_bannerView;
}