From d45855ba72fec836c2710b3d9d8987779466e1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 8 Dec 2016 16:08:03 +0100 Subject: [PATCH] [apps] Make the apps container a static object Change-Id: Ie052b558607d0d469f926301c2a0008cd77025da --- apps/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/main.cpp b/apps/main.cpp index 69a5097c7..c6d9eb420 100644 --- a/apps/main.cpp +++ b/apps/main.cpp @@ -1,7 +1,8 @@ #include "apps_container.h" +AppsContainer container; + void ion_app() { - AppsContainer container; container.switchTo(container.appAtIndex(0)); container.run(); }