mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-21 14:50:44 +01:00
[apps] Remove arg parameter in Shared::Function::nameWithArgument and Shared::CartesianFunction::derivativeNameWithArgument
This commit is contained in:
committed by
Léa Saviot
parent
b1b309c0c4
commit
b665e841ad
@@ -49,9 +49,9 @@ void ValuesController::willDisplayCellAtLocation(HighlightCell * cell, int i, in
|
||||
* after the isDerivativeColumn call, else it will expire. */
|
||||
Shared::ExpiringPointer<CartesianFunction> function = functionStore()->modelForRecord(recordAtColumn(i));
|
||||
if (isDerivative) {
|
||||
function->derivativeNameWithArgument(bufferName, bufferNameSize, CartesianFunction::Symbol());
|
||||
function->derivativeNameWithArgument(bufferName, bufferNameSize);
|
||||
} else {
|
||||
function->nameWithArgument(bufferName, bufferNameSize, CartesianFunction::Symbol());
|
||||
function->nameWithArgument(bufferName, bufferNameSize);
|
||||
}
|
||||
myFunctionCell->setText(bufferName);
|
||||
myFunctionCell->setColor(function->color());
|
||||
|
||||
Reference in New Issue
Block a user