[escher][apps] Move value cell class to escher folder renamed even odd

buffer text view

Change-Id: I6c8b8fdcd90d2b6847ec94f65c4b2e64204b52ba
This commit is contained in:
Émilie Feral
2016-12-23 13:58:31 +01:00
parent 43ac44c1b6
commit 924b0372d0
8 changed files with 42 additions and 49 deletions

View File

@@ -145,13 +145,13 @@ void ValuesController::willDisplayCellAtLocation(TableViewCell * cell, int i, in
int numberOfIntervalElements = m_interval.numberOfElements();
if (numberOfIntervalElements < Interval::k_maxNumberOfElements) {
buffer[0] = 0;
ValueCell * myValueCell = (ValueCell *)cell;
EvenOddBufferTextCell * myValueCell = (EvenOddBufferTextCell *)cell;
myValueCell->setText(buffer);
return;
}
}
// The cell is a value cell
ValueCell * myValueCell = (ValueCell *)cell;
EvenOddBufferTextCell * myValueCell = (EvenOddBufferTextCell *)cell;
Function * function = functionAtColumn(i);
float x = m_interval.element(j-1);
App * graphApp = (Graph::App *)app();