From e3a8fb1065b3ee38ec722d8a58179cbac94aa2d8 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 16 Nov 2002 13:20:26 +0100 Subject: Changed return type of MainMenuAction() --- PLUGINS/src/status/HISTORY | 4 ++++ PLUGINS/src/status/status.c | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'PLUGINS/src/status') diff --git a/PLUGINS/src/status/HISTORY b/PLUGINS/src/status/HISTORY index 45d42fbf..7d282915 100644 --- a/PLUGINS/src/status/HISTORY +++ b/PLUGINS/src/status/HISTORY @@ -23,3 +23,7 @@ VDR Plugin 'status' Revision History The NEWSTRUCT compile time switch is now obsolete. The required driver is now the CVS HEAD version dated 2002-11-01 or later. - Introduced Make.config. + +2002-11-23: Version 0.0.6 + +- Changed return type of MainMenuAction(). diff --git a/PLUGINS/src/status/status.c b/PLUGINS/src/status/status.c index 12e64b7b..e1000162 100644 --- a/PLUGINS/src/status/status.c +++ b/PLUGINS/src/status/status.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: status.c 1.5 2002/11/01 10:16:59 kls Exp $ + * $Id: status.c 1.6 2002/11/16 13:20:26 kls Exp $ */ #include #include -static const char *VERSION = "0.0.5"; +static const char *VERSION = "0.0.6"; static const char *DESCRIPTION = "Status monitor test"; static const char *MAINMENUENTRY = NULL; @@ -115,7 +115,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); }; @@ -158,7 +158,7 @@ void cPluginStatus::Housekeeping(void) // Perform any cleanup or other regular tasks. } -cOsdMenu *cPluginStatus::MainMenuAction(void) +cOsdObject *cPluginStatus::MainMenuAction(void) { // Perform the action when selected from the main VDR menu. return NULL; -- cgit v1.2.3