diff options
author | lordjaxom <lordjaxom> | 2005-04-24 16:19:14 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-04-24 16:19:14 +0000 |
commit | e2d58e6c2c159460be257a61f87ddad6fbd2c0ba (patch) | |
tree | 1f53e245195d93930e6093e1f015c5027bf10b3f /streamdev-client.c | |
parent | 183de0e401637f73a4f8afd10e38cb3f17a6a0f3 (diff) | |
download | vdr-plugin-streamdev-e2d58e6c2c159460be257a61f87ddad6fbd2c0ba.tar.gz vdr-plugin-streamdev-e2d58e6c2c159460be257a61f87ddad6fbd2c0ba.tar.bz2 |
- removed menu code temporarily
Diffstat (limited to 'streamdev-client.c')
-rw-r--r-- | streamdev-client.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/streamdev-client.c b/streamdev-client.c index 093a166..fe6a21f 100644 --- a/streamdev-client.c +++ b/streamdev-client.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: streamdev-client.c,v 1.1 2004/12/30 22:43:59 lordjaxom Exp $ + * $Id: streamdev-client.c,v 1.2 2005/04/24 16:19:44 lordjaxom Exp $ */ #include "streamdev-client.h" #include "client/device.h" #include "client/setup.h" -#include "client/menu.h" +//#include "client/menu.h" #include "i18n.h" const char *cPluginStreamdevClient::DESCRIPTION = "VTP Streaming Client"; @@ -39,11 +39,13 @@ void cPluginStreamdevClient::Housekeeping(void) { } const char *cPluginStreamdevClient::MainMenuEntry(void) { - return StreamdevClientSetup.StartClient ? tr("Streaming Control") : NULL; + return NULL; + //return StreamdevClientSetup.StartClient ? tr("Streaming Control") : NULL; } cOsdObject *cPluginStreamdevClient::MainMenuAction(void) { - return StreamdevClientSetup.StartClient ? new cStreamdevMenu : NULL; + return NULL; + //return StreamdevClientSetup.StartClient ? new cStreamdevMenu : NULL; } cMenuSetupPage *cPluginStreamdevClient::SetupMenu(void) { |