diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-17 12:57:29 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2011-04-17 12:57:29 +0200 |
commit | 79f8c5f38e0a24a5f30e0a29fb5c18f03c85c203 (patch) | |
tree | 30f36c4bfafff1f1e06f90f0c83a582ec2e76d24 /PLUGINS | |
parent | 475e64eeec529425b343006820a00a9b73ab0914 (diff) | |
download | vdr-79f8c5f38e0a24a5f30e0a29fb5c18f03c85c203.tar.gz vdr-79f8c5f38e0a24a5f30e0a29fb5c18f03c85c203.tar.bz2 |
Removed an obsolete local variable in dvbsdffosd.c
Diffstat (limited to 'PLUGINS')
-rw-r--r-- | PLUGINS/src/dvbsddevice/HISTORY | 4 | ||||
-rw-r--r-- | PLUGINS/src/dvbsddevice/dvbsddevice.c | 4 | ||||
-rw-r--r-- | PLUGINS/src/dvbsddevice/dvbsdffosd.c | 8 |
3 files changed, 9 insertions, 7 deletions
diff --git a/PLUGINS/src/dvbsddevice/HISTORY b/PLUGINS/src/dvbsddevice/HISTORY index 0d1047b9..9672f6fc 100644 --- a/PLUGINS/src/dvbsddevice/HISTORY +++ b/PLUGINS/src/dvbsddevice/HISTORY @@ -15,3 +15,7 @@ VDR Plugin 'dvbsddevice' Revision History - The PCR pid is now recorded for channels where this is different from the video PID. + +2011-04-17: Version 0.0.4 + +- Removed an obsolete local variable in dvbsdffosd.c (thanks to Paul Menzel). diff --git a/PLUGINS/src/dvbsddevice/dvbsddevice.c b/PLUGINS/src/dvbsddevice/dvbsddevice.c index cc48b283..6f042d8b 100644 --- a/PLUGINS/src/dvbsddevice/dvbsddevice.c +++ b/PLUGINS/src/dvbsddevice/dvbsddevice.c @@ -3,13 +3,13 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: dvbsddevice.c 1.3 2010/01/30 10:05:42 kls Exp $ + * $Id: dvbsddevice.c 1.4 2011/04/17 12:55:43 kls Exp $ */ #include <vdr/plugin.h> #include "dvbsdffdevice.h" -static const char *VERSION = "0.0.3"; +static const char *VERSION = "0.0.4"; static const char *DESCRIPTION = "SD Full Featured DVB device"; class cPluginDvbsddevice : public cPlugin { diff --git a/PLUGINS/src/dvbsddevice/dvbsdffosd.c b/PLUGINS/src/dvbsddevice/dvbsdffosd.c index 039999aa..46c65e05 100644 --- a/PLUGINS/src/dvbsddevice/dvbsdffosd.c +++ b/PLUGINS/src/dvbsddevice/dvbsdffosd.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: dvbsdffosd.c 2.2 2010/09/12 11:29:00 kls Exp $ + * $Id: dvbsdffosd.c 2.3 2011/04/17 12:55:09 kls Exp $ */ #include "dvbsdffosd.h" @@ -73,8 +73,7 @@ void cDvbSdFfOsd::SetActive(bool On) Flush(); } else if (shown) { - cBitmap *Bitmap; - for (int i = 0; (Bitmap = GetBitmap(i)) != NULL; i++) { + for (int i = 0; GetBitmap(i); i++) { Cmd(OSD_SetWindow, 0, i + 1); Cmd(OSD_Close); } @@ -108,8 +107,7 @@ eOsdError cDvbSdFfOsd::CanHandleAreas(const tArea *Areas, int NumAreas) eOsdError cDvbSdFfOsd::SetAreas(const tArea *Areas, int NumAreas) { if (shown) { - cBitmap *Bitmap; - for (int i = 0; (Bitmap = GetBitmap(i)) != NULL; i++) { + for (int i = 0; GetBitmap(i); i++) { Cmd(OSD_SetWindow, 0, i + 1); Cmd(OSD_Close); } |