diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-01-12 14:33:44 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-01-12 14:33:44 +0100 |
commit | fef409fe23c9fb6c8114255ad045336a2b97c287 (patch) | |
tree | e154ce4102b2b79a86e4549714243a13eb2d3340 /PLUGINS.html | |
parent | 16d37090dc82bcf1769f2ddb7439c6034d0f2e97 (diff) | |
download | vdr-fef409fe23c9fb6c8114255ad045336a2b97c287.tar.gz vdr-fef409fe23c9fb6c8114255ad045336a2b97c287.tar.bz2 |
Fixed the example for cReceiver in PLUGINS.html
Diffstat (limited to 'PLUGINS.html')
-rw-r--r-- | PLUGINS.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/PLUGINS.html b/PLUGINS.html index 859ca705..0c7d223a 100644 --- a/PLUGINS.html +++ b/PLUGINS.html @@ -1519,10 +1519,13 @@ public: cMyReceiver(int Pid); }; +<modified> cMyReceiver::cMyReceiver(int Pid) -:cReceiver(tChannelID(), -1, Pid) +:cReceiver(NULL, -1) { + AddPid(Pid); } +</modified> cMyReceiver::~cMyReceiver() { |