From 7b4444a96c59909cf3978cea1a71aca7effba146 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Mon, 6 Feb 2017 18:04:29 +0100 Subject: [PATCH] [apps] Add sequence app to the apps container Change-Id: I5884674858d443d8abaae7be8db6dd961e999769 --- apps/apps_container.cpp | 3 ++- apps/apps_container.h | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/apps_container.cpp b/apps/apps_container.cpp index f428de0c5..3799263b3 100644 --- a/apps/apps_container.cpp +++ b/apps/apps_container.cpp @@ -14,6 +14,7 @@ AppsContainer::AppsContainer() : m_probabilityApp(this), m_calculationApp(this, &m_globalContext), m_regressionApp(this), + m_sequenceApp(this, &m_globalContext), m_settingsApp(this, &m_preferences), m_statisticsApp(this), m_globalContext(GlobalContext()), @@ -32,7 +33,7 @@ App * AppsContainer::appAtIndex(int index) { &m_homeApp, &m_calculationApp, &m_graphApp, - &m_graphApp, + &m_sequenceApp, &m_graphApp, &m_statisticsApp, &m_probabilityApp, diff --git a/apps/apps_container.h b/apps/apps_container.h index d7a5845a3..86dcd47ff 100644 --- a/apps/apps_container.h +++ b/apps/apps_container.h @@ -6,6 +6,7 @@ #include "probability/app.h" #include "calculation/app.h" #include "regression/app.h" +#include "sequence/app.h" #include "settings/app.h" #include "statistics/app.h" #include "apps_window.h" @@ -40,6 +41,7 @@ private: Probability::App m_probabilityApp; Calculation::App m_calculationApp; Regression::App m_regressionApp; + Sequence::App m_sequenceApp; Settings::App m_settingsApp; Statistics::App m_statisticsApp; #if USE_PIC_VIEW_APP