diff options
Diffstat (limited to 'PLUGINS/SRC/hello')
-rw-r--r-- | PLUGINS/SRC/hello/HISTORY | 4 | ||||
-rw-r--r-- | PLUGINS/SRC/hello/hello.c | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/PLUGINS/SRC/hello/HISTORY b/PLUGINS/SRC/hello/HISTORY index 8639e05..53b620e 100644 --- a/PLUGINS/SRC/hello/HISTORY +++ b/PLUGINS/SRC/hello/HISTORY @@ -37,3 +37,7 @@ VDR Plugin 'hello' 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.9 + +- Changed return type of MainMenuAction(). diff --git a/PLUGINS/SRC/hello/hello.c b/PLUGINS/SRC/hello/hello.c index 6583285..b726578 100644 --- a/PLUGINS/SRC/hello/hello.c +++ b/PLUGINS/SRC/hello/hello.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: hello.c 1.9 2002/11/01 10:16:53 kls Exp $ + * $Id: hello.c 1.10 2002/11/23 15:07:28 kls Exp $ */ #include <getopt.h> @@ -12,7 +12,7 @@ #include <vdr/plugin.h> #include "i18n.h" -static const char *VERSION = "0.0.8"; +static const char *VERSION = "0.0.9"; static const char *DESCRIPTION = "A friendly greeting"; static const char *MAINMENUENTRY = "Hello"; @@ -31,7 +31,7 @@ public: virtual bool Start(void); virtual void Housekeeping(void); virtual const char *MainMenuEntry(void) { return tr(MAINMENUENTRY); } - virtual cOsdMenu *MainMenuAction(void); + virtual cOsdObject *MainMenuAction(void); virtual cMenuSetupPage *SetupMenu(void); virtual bool SetupParse(const char *Name, const char *Value); }; @@ -124,7 +124,7 @@ void cPluginHello::Housekeeping(void) // Perform any cleanup or other regular tasks. } -cOsdMenu *cPluginHello::MainMenuAction(void) +cOsdObject *cPluginHello::MainMenuAction(void) { // Perform the action when selected from the main VDR menu. Interface->Confirm(UseAlternateGreeting ? tr("Howdy folks!") : tr("Hello world!"), GreetingTime); |