From edcd570a06ed28ffa661fd5e127b6f1729c098a6 Mon Sep 17 00:00:00 2001 From: svntcreutz Date: Fri, 5 Oct 2007 15:08:09 +0000 Subject: 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 --- src/CommandMenuNode.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/CommandMenuNode.cpp') diff --git a/src/CommandMenuNode.cpp b/src/CommandMenuNode.cpp index ce8d523..5ebb5a5 100644 --- a/src/CommandMenuNode.cpp +++ b/src/CommandMenuNode.cpp @@ -96,12 +96,27 @@ string CommandMenuNode::Command() return _command; } +void CommandMenuNode::Command(string newCommand) +{ + _command = newCommand; +} + bool CommandMenuNode::ShouldConfirm() { return _confirm; } +void CommandMenuNode::ShouldConfirm(bool newConfirm) +{ + _confirm = newConfirm; +} + string CommandMenuNode::Text() { return _text; } + +void CommandMenuNode::Text(string newText) +{ + _text = newText; +} -- cgit v1.2.3