mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed the return type of cMyDeviceHook::DeviceProvidesTransponder() in PLUGINS.html
This commit is contained in:
parent
f8d0f77307
commit
33342fb17b
3
HISTORY
3
HISTORY
@ -6836,7 +6836,7 @@ Video Disk Recorder Revision History
|
|||||||
- Fixed frozen live view with device bonding in case the bonded master is used for
|
- Fixed frozen live view with device bonding in case the bonded master is used for
|
||||||
live viewing (reported by Uwe Scheffler).
|
live viewing (reported by Uwe Scheffler).
|
||||||
|
|
||||||
2012-01-17: Version 1.7.24
|
2012-01-18: Version 1.7.24
|
||||||
|
|
||||||
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
- Updated the Italian OSD texts (thanks to Diego Pierotto).
|
||||||
- Revoked "Fixed handling symbolic links in cRecordings::ScanVideoDir()".
|
- Revoked "Fixed handling symbolic links in cRecordings::ScanVideoDir()".
|
||||||
@ -6847,3 +6847,4 @@ Video Disk Recorder Revision History
|
|||||||
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
- Updated the Finnish OSD texts (thanks to Rolf Ahrenberg).
|
||||||
- Fixed asserting there is a live programme if the primary device is bonded with
|
- Fixed asserting there is a live programme if the primary device is bonded with
|
||||||
a device that starts a recording on a different band.
|
a device that starts a recording on a different band.
|
||||||
|
- Fixed the return type of cMyDeviceHook::DeviceProvidesTransponder() in 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
|
provide the given Channel's transponder, as in
|
||||||
|
|
||||||
<p><table><tr><td class="code"><pre>
|
<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>)
|
if (<i>condition where Device can't provide Channel</i>)
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user