diff options
author | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-10-05 15:08:09 +0000 |
---|---|---|
committer | svntcreutz <svntcreutz@cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f> | 2007-10-05 15:08:09 +0000 |
commit | edcd570a06ed28ffa661fd5e127b6f1729c098a6 (patch) | |
tree | fb3ecd100bf3227e4b1dde053771d85f960af131 /src/CommandMenuNode.h | |
parent | b0b81edb026ecce4e65c3a18263a7b5f79089204 (diff) | |
download | vdr-plugin-menuorg-edcd570a06ed28ffa661fd5e127b6f1729c098a6.tar.gz vdr-plugin-menuorg-edcd570a06ed28ffa661fd5e127b6f1729c098a6.tar.bz2 |
added Store()-Procedures to Item-Setups
git-svn-id: file:///home/tobias/sandbox/vdr/--/vdr-pkg/vdr-pkg/menuorg/trunk@6180 cd0d6b48-d4f9-0310-940f-ab8c4eb44d3f
Diffstat (limited to 'src/CommandMenuNode.h')
-rw-r--r-- | src/CommandMenuNode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/CommandMenuNode.h b/src/CommandMenuNode.h index 2607337..638cee0 100644 --- a/src/CommandMenuNode.h +++ b/src/CommandMenuNode.h @@ -38,8 +38,11 @@ class CommandMenuNode: public MenuNode public: CommandMenuNode(std::string text, std::string _command, bool confirm); std::string Text(); + void Text(std::string newText); std::string Command(); + void Command(std::string newCommand); bool ShouldConfirm(); + void ShouldConfirm(bool newConfirm); // MenuNode virtual void Process(IMenuNodeProcessor* menuNodeProcessor); |