[code] Get rid of unused member variable in VariableBoxController

This commit is contained in:
Émilie Feral
2019-03-12 14:43:18 +01:00
parent e1450676e0
commit f713551d46
3 changed files with 4 additions and 8 deletions

View File

@@ -8,11 +8,9 @@
namespace Code {
class App;
class VariableBoxController : public NestedMenuController {
public:
VariableBoxController(App * pythonDelegate, ScriptStore * scriptStore);
VariableBoxController(ScriptStore * scriptStore);
/* Responder */
bool handleEvent(Ion::Events::Event event) override;
@@ -36,7 +34,6 @@ private:
void insertTextInCaller(const char * text);
void addFunctionAtIndex(const char * functionName, int scriptIndex);
void addVariableAtIndex(const char * variableName, int scriptIndex);
App * m_pythonDelegate;
ScriptNode m_scriptNodes[k_maxScriptNodesCount];
int m_scriptNodesCount;
ScriptStore * m_scriptStore;