summaryrefslogtreecommitdiff
path: root/dvdplugin.h
diff options
context:
space:
mode:
authoranbr <vdr07@deltab.de>2011-01-17 20:04:01 +0100
committeranbr <vdr07@deltab.de>2011-01-17 20:04:01 +0100
commitdf5b0f99465e049819fa5f200dffea467e64cce8 (patch)
tree8576b60e5f718f9b5ba8d987313d287b97dd8923 /dvdplugin.h
parentfe18f7e3c3294e2b9b772070896c9f96184f86a5 (diff)
downloadvdr-plugin-dvdswitch-df5b0f99465e049819fa5f200dffea467e64cce8.tar.gz
vdr-plugin-dvdswitch-df5b0f99465e049819fa5f200dffea467e64cce8.tar.bz2
Add missing base link (revert bug from commit:63370045)
Diffstat (limited to 'dvdplugin.h')
-rw-r--r--dvdplugin.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/dvdplugin.h b/dvdplugin.h
index e7ff69f..499093e 100644
--- a/dvdplugin.h
+++ b/dvdplugin.h
@@ -12,7 +12,7 @@ class cDVDPluginThread : public cThread
protected:
virtual void Action(void);
public:
- cDVDPluginThread(char *image = NULL);
+ cDVDPluginThread(const char *image = NULL);
~cDVDPluginThread(void);
};
@@ -29,11 +29,11 @@ class cDVDPlugin
public:
static void Start(char *image = NULL);
static void Exit(void);
- static void ChangeLink(char *target);
+ static void ChangeLink(const char *target, const char *link);
static void Init(void)
{
DetectDevice();
- ChangeLink(DVDSwitchSetup.DVDLinkOrg);
+ ChangeLink(DVDSwitchSetup.DVDLinkOrg, DVDSwitchSetup.DVDLink);
SetLink();
}
static void Finish(void)