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

@@ -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()
{