[graph] Fix Graph controllers to take a StorageCartesianFunction instead

of a CartesianFunction
This commit is contained in:
Émilie Feral
2018-10-12 09:39:49 +02:00
parent 3cedfb84e9
commit 3412463e84
19 changed files with 94 additions and 92 deletions

View File

@@ -56,7 +56,7 @@ bool CalculationGraphController::handleEvent(Ion::Events::Event event) {
return false;
}
void CalculationGraphController::setFunction(CartesianFunction * function) {
void CalculationGraphController::setFunction(StorageCartesianFunction * function) {
m_graphView->selectFunction(function);
m_function = function;
}