summaryrefslogtreecommitdiff
path: root/PLUGINS.html
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-01-18 09:09:30 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-01-18 09:09:30 +0100
commit33342fb17bcfea3cb91207c9042c4b5f28d3ca46 (patch)
treeb75b19a5f1c3bcf4b0d36d4c9cb5e98def67c05c /PLUGINS.html
parentf8d0f773070e8ac498ff408d35cf9e5daa8f3aa3 (diff)
downloadvdr-33342fb17bcfea3cb91207c9042c4b5f28d3ca46.tar.gz
vdr-33342fb17bcfea3cb91207c9042c4b5f28d3ca46.tar.bz2
Fixed the return type of cMyDeviceHook::DeviceProvidesTransponder() in PLUGINS.html
Diffstat (limited to 'PLUGINS.html')
-rw-r--r--PLUGINS.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/PLUGINS.html b/PLUGINS.html
index 3859918d..5ab0fd0b 100644
--- a/PLUGINS.html
+++ b/PLUGINS.html
@@ -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;