summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2010-02-06 10:18:20 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2010-02-06 10:18:20 +0100
commit4bf5c793f4dc4e106eb98100988ac543f7d7970c (patch)
tree704a501c2ab41399e2dc4f18af2f4aa6991fc76d /menu.c
parent19e256d792a59cfe9117bfe009db402159fc30c1 (diff)
downloadvdr-4bf5c793f4dc4e106eb98100988ac543f7d7970c.tar.gz
vdr-4bf5c793f4dc4e106eb98100988ac543f7d7970c.tar.bz2
Moved the declaration of cMenuCommands to menu.h, so that plugins can use it
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/menu.c b/menu.c
index 7ddf0cff..9e97cb25 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 2.14 2010/01/31 12:43:24 kls Exp $
+ * $Id: menu.c 2.15 2010/02/06 10:16:15 kls Exp $
*/
#include "menu.h"
@@ -1781,22 +1781,6 @@ eOSState cMenuSchedule::ProcessKey(eKeys Key)
// --- cMenuCommands ---------------------------------------------------------
-class cMenuCommands : public cOsdMenu {
-private:
- cList<cNestedItem> *commands;
- cString parameters;
- cString title;
- cString command;
- bool confirm;
- char *result;
- bool Parse(const char *s);
- eOSState Execute(void);
-public:
- cMenuCommands(const char *Title, cList<cNestedItem> *Commands, const char *Parameters = NULL);
- virtual ~cMenuCommands();
- virtual eOSState ProcessKey(eKeys Key);
- };
-
cMenuCommands::cMenuCommands(const char *Title, cList<cNestedItem> *Commands, const char *Parameters)
:cOsdMenu(Title)
{