summaryrefslogtreecommitdiff
path: root/src/CommandItemSetup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/CommandItemSetup.h')
-rw-r--r--src/CommandItemSetup.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/CommandItemSetup.h b/src/CommandItemSetup.h
index 9275cee..e054198 100644
--- a/src/CommandItemSetup.h
+++ b/src/CommandItemSetup.h
@@ -26,20 +26,22 @@
#include <vdr/menu.h>
#include "CommandMenuNode.h"
-class cCommandItemSetup : public cOsdMenu
+class CommandItemSetup : public cOsdMenu
{
private:
char _newName[256];
char _newCommand[256];
int _newConfirm;
+ CommandMenuNode* _node;
public:
- cCommandItemSetup(CommandMenuNode* node);
- ~cCommandItemSetup(void);
+ CommandItemSetup(CommandMenuNode* node);
+ ~CommandItemSetup(void);
virtual eOSState ProcessKey(eKeys Key);
private:
void CreateMenuItems(void);
+ void Store(void);
};
#endif