[apps/graph/list] Add a switch to the parameter page in graph app

Change-Id: I51f432939157cbd772e7e868d3e0c8e54d279a6d
This commit is contained in:
Émilie Feral
2016-09-20 16:12:59 +02:00
parent a28731c459
commit 56edcded0a
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
ParameterController::ParameterController(Responder * parentResponder) :
ViewController(parentResponder),
m_colorCell(TableViewCell("Couleur de la fonction")),
m_enableCell(TableViewCell("Activer/Desactiver")),
m_enableCell(SwitchTableViewCell("Activer/Desactiver")),
m_deleteCell(TableViewCell("Supprimer la fonction")),
m_tableView(TableView(this)),
m_activeCell(0)

View File

@@ -24,7 +24,7 @@ public:
private:
constexpr static int k_totalNumberOfCell = 3;
TableViewCell m_colorCell;
TableViewCell m_enableCell;
SwitchTableViewCell m_enableCell;
TableViewCell m_deleteCell;
TableView m_tableView;
int m_activeCell;