[apps/sequence] Change default XNT text to 'n'

Change-Id: I917c09dd1c4f63a5988962b4c4f18f57e073a2af
This commit is contained in:
Émilie Feral
2017-02-15 11:42:03 +01:00
parent 5c69897133
commit ad665e9b3c
2 changed files with 5 additions and 0 deletions

View File

@@ -33,4 +33,8 @@ Context * App::localContext() {
return &m_nContext;
}
const char * App::XNT() {
return "n";
}
}

View File

@@ -15,6 +15,7 @@ public:
App(Container * container, Poincare::Context * context);
InputViewController * inputViewController();
Poincare::Context * localContext() override;
const char * XNT() override;
private:
SequenceStore m_sequenceStore;
Poincare::VariableContext m_nContext;