[Escher] Responder can get a pointer to the parent App

We assume the root parent is the App. This works well because each view
controller is a Responder.

Change-Id: I5d90053949a4ffbdb78746cc85430a15138e48e7
This commit is contained in:
Romain Goyet
2016-08-12 10:12:22 +02:00
parent 6e0aeaf501
commit 53cf3e2ead
16 changed files with 42 additions and 23 deletions

View File

@@ -2,9 +2,9 @@
GraphApp::GraphApp() :
App(),
m_listController(ListController()),
m_graphController(GraphController()),
m_tabViewController(&m_listController, &m_graphController)
m_listController(ListController(nullptr)),
m_graphController(GraphController(nullptr)),
m_tabViewController(this, &m_listController, &m_graphController)
{
}