diff options
author | lordjaxom <lordjaxom> | 2005-12-17 19:43:50 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-12-17 19:43:50 +0000 |
commit | 26897048c24b350b25668503ad933b225733f635 (patch) | |
tree | 81743e53ea39d3fd4dfcd4886573702fb4e0f3a1 | |
parent | 9ed162fa14e348bf9660f393d24b36d0a8492a67 (diff) | |
download | vdr-plugin-text2skin-26897048c24b350b25668503ad933b225733f635.tar.gz vdr-plugin-text2skin-26897048c24b350b25668503ad933b225733f635.tar.bz2 |
- fixed displaying of partial channel numbers while changing channels (thanks to
Chris Warren)
-rw-r--r-- | CONTRIBUTORS | 4 | ||||
-rw-r--r-- | HISTORY | 2 | ||||
-rw-r--r-- | display.c | 6 |
3 files changed, 8 insertions, 4 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 86ab45f..e763253 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -20,3 +20,7 @@ Reinhard Nissl Frank Enderle for sending a patch to fix a crash due to uninitialized pointer + +Chris Warren + for sending a patch to fix displaying partial channel numbers while changing + channels @@ -7,6 +7,8 @@ VDR Plugin 'text2skin' Revision History - patch for PresentRemaining by Björn (VDR-Portal) - fixed a race condition (thanks to Reinhard Nissl for pointing this out) - updated finnish translations (thanks to Rolf Ahrenberg) +- fixed displaying of partial channel numbers while changing channels (thanks to + Chris Warren) - added tokens for Recording Info Display (RecordingName, RecordingDateTime, RecordingTitle, RecordingShortText, RecordingDescription, RecordingLanguageCode, RecordingLanguageDescription) @@ -1,5 +1,5 @@ /* - * $Id: display.c,v 1.24 2005/09/20 18:22:56 lordjaxom Exp $ + * $Id: display.c,v 1.25 2005/12/17 19:43:51 lordjaxom Exp $ */ #include "render.h" @@ -116,9 +116,7 @@ cxType cText2SkinDisplayChannel::GetTokenData(const txToken &Token) { switch (Token.Type) { case tChannelNumber: - return mChannel != NULL - ? (cxType)ChannelNumber(mChannel, mNumber) - : (cxType)false; + return ChannelNumber(mChannel, mNumber) case tChannelName: return mChannel != NULL |