[apps] Add sequence app to the apps container

Change-Id: I5884674858d443d8abaae7be8db6dd961e999769
This commit is contained in:
Émilie Feral
2017-02-06 18:04:29 +01:00
parent 54a90167cf
commit 7b4444a96c
2 changed files with 4 additions and 1 deletions

View File

@@ -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,

View File

@@ -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