summaryrefslogtreecommitdiff
path: root/newplugin
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-11-24 10:45:39 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2002-11-24 10:45:39 +0100
commit08e4f36ccdee163b6925f09f591fbc8ce8c2611b (patch)
tree89289f25cee0ef8cfa03f4bd24de96e302971875 /newplugin
parente3a8fb1065b3ee38ec722d8a58179cbac94aa2d8 (diff)
downloadvdr-08e4f36ccdee163b6925f09f591fbc8ce8c2611b.tar.gz
vdr-08e4f36ccdee163b6925f09f591fbc8ce8c2611b.tar.bz2
Plugins can now have their own raw OSD
Diffstat (limited to 'newplugin')
-rwxr-xr-xnewplugin6
1 files changed, 3 insertions, 3 deletions
diff --git a/newplugin b/newplugin
index c5a06af3..25f23d68 100755
--- a/newplugin
+++ b/newplugin
@@ -12,7 +12,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: newplugin 1.11 2002/11/01 13:43:50 kls Exp $
+# $Id: newplugin 1.12 2002/11/23 15:00:35 kls Exp $
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
@@ -165,7 +165,7 @@ public:
virtual bool Start(void);
virtual void Housekeeping(void);
virtual const char *MainMenuEntry(void) { return MAINMENUENTRY; }
- virtual cOsdMenu *MainMenuAction(void);
+ virtual cOsdObject *MainMenuAction(void);
virtual cMenuSetupPage *SetupMenu(void);
virtual bool SetupParse(const char *Name, const char *Value);
};
@@ -205,7 +205,7 @@ void cPlugin${PLUGIN_CLASS}::Housekeeping(void)
// Perform any cleanup or other regular tasks.
}
-cOsdMenu *cPlugin${PLUGIN_CLASS}::MainMenuAction(void)
+cOsdObject *cPlugin${PLUGIN_CLASS}::MainMenuAction(void)
{
// Perform the action when selected from the main VDR menu.
return NULL;