[apps/sequence] Personalize the button "add a function" for sequence app

Change-Id: Ie84757feec57a934c80573ad24b71e868c0d7b81
This commit is contained in:
Émilie Feral
2017-02-08 16:30:55 +01:00
parent 81b0f58fd8
commit 4ba14c8597
6 changed files with 10 additions and 15 deletions

View File

@@ -3,11 +3,12 @@
namespace Shared {
ListController::ListController(Responder * parentResponder, FunctionStore * functionStore, HeaderViewController * header) :
ListController::ListController(Responder * parentResponder, FunctionStore * functionStore, HeaderViewController * header, const char * text) :
ViewController(parentResponder),
HeaderViewDelegate(header),
m_selectableTableView(SelectableTableView(this, this, 0, 0, 0, 0, nullptr, false, true)),
m_functionStore(functionStore)
m_functionStore(functionStore),
m_addNewFunction(text)
{
}