Fixed the return type of cMyDeviceHook::DeviceProvidesTransponder() in PLUGINS.html

This commit is contained in:
Klaus Schmidinger
2012-01-18 09:09:30 +01:00
parent f8d0f77307
commit 33342fb17b
2 changed files with 3 additions and 2 deletions

View File

@@ -1993,7 +1993,7 @@ whatever actions are necessary to determine whether the given Device can
provide the given Channel's transponder, as in
<p><table><tr><td class="code"><pre>
void cMyDeviceHook::DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const
bool cMyDeviceHook::DeviceProvidesTransponder(const cDevice *Device, const cChannel *Channel) const
{
if (<i>condition where Device can't provide Channel</i>)
return false;