Files
Upsilon/apps/home/app.cpp
Émilie Feral f7f8430288 [apps] Display app title in the title bar
Change-Id: I8cd8d09359e627a0915c99c13dc445027ec361e3
2017-01-27 11:20:31 +01:00

17 lines
304 B
C++

#include "app.h"
#include "../apps_container.h"
extern "C" {
#include <assert.h>
}
namespace Home {
App::App(AppsContainer * container) :
::App(container, &m_controller, "Applications"),
m_controller(Controller(&m_modalViewController, container))
{
assert(container->appAtIndex(0) == this);
}
}