diff options
author | anbr <vdr07@deltab.de> | 2011-01-17 20:04:01 +0100 |
---|---|---|
committer | anbr <vdr07@deltab.de> | 2011-01-17 20:04:01 +0100 |
commit | df5b0f99465e049819fa5f200dffea467e64cce8 (patch) | |
tree | 8576b60e5f718f9b5ba8d987313d287b97dd8923 /dvdplugin.h | |
parent | fe18f7e3c3294e2b9b772070896c9f96184f86a5 (diff) | |
download | vdr-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.h | 6 |
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) |