[escher][apps] CHange textField API

Change-Id: I766d153b7f7429473f297707a08358051123accc
This commit is contained in:
Émilie Feral
2016-12-13 16:00:55 +01:00
parent fed6664b42
commit 8c284ba34f
35 changed files with 470 additions and 378 deletions

View File

@@ -33,8 +33,13 @@ void SelectableTableView::deselectTable() {
TableViewCell * previousCell = cellAtLocation(m_selectedCellX, m_selectedCellY);
previousCell->setHighlighted(false);
}
int previousSelectedCellX = m_selectedCellX;
int previousSelectedCellY = m_selectedCellY;
m_selectedCellX = 0;
m_selectedCellY = -1;
if (m_delegate) {
m_delegate->tableViewDidChangeSelection(this, previousSelectedCellX, previousSelectedCellY);
}
}
bool SelectableTableView::selectCellAtLocation(int i, int j) {