[apps] Use a forgotten method on selectable table view

Change-Id: I6b934ac0d2587565c6b94d5130d158b621c1e187
This commit is contained in:
Émilie Feral
2017-04-24 10:29:30 +02:00
parent 2b5e1c31bf
commit 230a53fe7e
6 changed files with 9 additions and 10 deletions

View File

@@ -54,7 +54,7 @@ void EditableCellTableViewController::tableViewDidChangeSelection(SelectableTabl
}
}
if (cellAtLocationIsEditable(t->selectedColumn(), t->selectedRow())) {
EvenOddEditableTextCell * myCell = (EvenOddEditableTextCell *)t->cellAtLocation(t->selectedColumn(), t->selectedRow());
EvenOddEditableTextCell * myCell = (EvenOddEditableTextCell *)t->selectedCell();
app()->setFirstResponder(myCell);
}
}