summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-06-07 22:03:20 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-06-07 22:03:20 +0200
commite496fac87aa919a63802505e4298cd65c28b168a (patch)
treebdb5c1849c09a34eb0da53c7935c53c824a54282
parentd623479e327cfe3100abc3e4ce5d96a78656fbc5 (diff)
downloadvdr-e496fac87aa919a63802505e4298cd65c28b168a.tar.gz
vdr-e496fac87aa919a63802505e4298cd65c28b168a.tar.bz2
Fixed some copy&paste errors in PLUGINS.html
-rw-r--r--CONTRIBUTORS1
-rw-r--r--HISTORY3
-rw-r--r--PLUGINS.html4
3 files changed, 5 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 4c4c629f..73540998 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -2571,6 +2571,7 @@ Benjamin Hess <benjamin.h@gmx.ch>
Winfried Koehler <w_koehl@gmx.de>
for fixing finding new transponders
for reporting a compiler warning in calculations involving FramesPerSecond()
+ for fixing some copy&paste errors in PLUGINS.html
Hans-Werner Hilse <hilse@web.de>
for adding the command line option --userdump to enable core dumps in case VDR
diff --git a/HISTORY b/HISTORY
index d4b38f38..15a9235c 100644
--- a/HISTORY
+++ b/HISTORY
@@ -7148,7 +7148,7 @@ Video Disk Recorder Revision History
caching the information whether a recording is stored on the video directory file
system within the cRecording data (based on a patch from Torsten Lang).
-2012-06-07: Version 1.7.29
+2012-06-08: Version 1.7.29
- Added a missing template specification to the c'tor of cSortedTimers (thanks to Udo
Richter).
@@ -7168,3 +7168,4 @@ Video Disk Recorder Revision History
- Updated the Italian OSD texts (thanks to Diego Pierotto).
- Changed the button colors in the LCARS skin to better fit with the rest of the theme.
- Removed the gap from the main menu buttons in the LCARS skin.
+- Fixed some copy&paste errors in PLUGINS.html (thanks to Winfried Köhler).
diff --git a/PLUGINS.html b/PLUGINS.html
index 82164bff..a6b29f20 100644
--- a/PLUGINS.html
+++ b/PLUGINS.html
@@ -1687,7 +1687,7 @@ The first step in implementing a new skin is to derive a class from <tt>cSkin</t
that provides the handling objects necessary to do the actual work:
<p><table><tr><td class="code"><pre>
-#include "skins.h"
+#include &lt;vdr/skins.h&gt;
class cMySkin : public cSkin {
public:
@@ -1697,7 +1697,7 @@ public:
virtual cSkinDisplayMenu *DisplayMenu(void);
virtual cSkinDisplayReplay *DisplayReplay(bool ModeOnly);
virtual cSkinDisplayVolume *DisplayVolume(void);
- virtual cSkinDisplayMessage *DisplayTrack(int NumTracks, const char * const *Tracks);
+ virtual cSkinDisplayTracks *DisplayTracks(const char *Title, int NumTracks, const char * const *Tracks);
virtual cSkinDisplayMessage *DisplayMessage(void);
};
</pre></td></tr></table><p>