mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-23 15:50:49 +01:00
[apps] Rule of 5 (3)
Change-Id: Ia85b23a09e9debd62b4f3590463a4f16454ef4b7
This commit is contained in:
@@ -7,19 +7,16 @@ extern "C" {
|
||||
App::App(Container * container, ViewController * rootViewController, I18n::Message name, I18n::Message upperName, const Image * icon, I18n::Message warningMessage) :
|
||||
Responder(nullptr),
|
||||
m_magic(Magic),
|
||||
m_modalViewController(ModalViewController(this, rootViewController)),
|
||||
m_modalViewController(this, rootViewController),
|
||||
m_container(container),
|
||||
m_firstResponder(nullptr),
|
||||
m_warningController(WarningController(this, warningMessage)),
|
||||
m_warningController(this, warningMessage),
|
||||
m_name(name),
|
||||
m_upperName(upperName),
|
||||
m_icon(icon)
|
||||
{
|
||||
}
|
||||
|
||||
App::~App() {
|
||||
}
|
||||
|
||||
bool App::processEvent(Ion::Events::Event event) {
|
||||
Responder * responder = m_firstResponder;
|
||||
bool didHandleEvent = false;
|
||||
|
||||
Reference in New Issue
Block a user