1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

Fixed the example for cReceiver in PLUGINS.html

This commit is contained in:
Klaus Schmidinger 2013-01-12 14:33:44 +01:00
parent 16d37090dc
commit fef409fe23
2 changed files with 6 additions and 2 deletions

View File

@ -7494,7 +7494,7 @@ Video Disk Recorder Revision History
use it. use it.
- Added maximum SNR value for PCTV Systems PCTV 73ESE (thanks to Cedric Dewijs). - Added maximum SNR value for PCTV Systems PCTV 73ESE (thanks to Cedric Dewijs).
2013-01-06: Version 1.7.36 2013-01-12: Version 1.7.36
- Added maximum SNR value for PCTV Systems nanoStick T2 290e (thanks to Antti - Added maximum SNR value for PCTV Systems nanoStick T2 290e (thanks to Antti
Hartikainen). Hartikainen).
@ -7512,3 +7512,4 @@ Video Disk Recorder Revision History
files to be spread around your system according to the FHS, you can set the files to be spread around your system according to the FHS, you can set the
parameter ONEDIR=1 (using Make.config) to have all files in one /video directory as parameter ONEDIR=1 (using Make.config) to have all files in one /video directory as
before. before.
- Fixed the example for cReceiver in PLUGINS.html.

View File

@ -1519,10 +1519,13 @@ public:
cMyReceiver(int Pid); cMyReceiver(int Pid);
}; };
<modified>
cMyReceiver::cMyReceiver(int Pid) cMyReceiver::cMyReceiver(int Pid)
:cReceiver(tChannelID(), -1, Pid) :cReceiver(NULL, -1)
{ {
AddPid(Pid);
} }
</modified>
cMyReceiver::~cMyReceiver() cMyReceiver::~cMyReceiver()
{ {