diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-04 09:41:06 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-06-04 09:41:06 +0200 |
commit | cd4a7e3ef4bca56685c288492a98659bc893a702 (patch) | |
tree | 64d927989d427cce0eeadc2bcde2f27d07add465 /skinlcars.c | |
parent | bfc2c41c124a95850f33ed72e7b45c90fda715e5 (diff) | |
download | vdr-cd4a7e3ef4bca56685c288492a98659bc893a702.tar.gz vdr-cd4a7e3ef4bca56685c288492a98659bc893a702.tar.bz2 |
Fixed the call to ChannelString() in cSkinLCARSDisplayChannel::SetChannel()
Diffstat (limited to 'skinlcars.c')
-rw-r--r-- | skinlcars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skinlcars.c b/skinlcars.c index 49a499b0..68c8df60 100644 --- a/skinlcars.c +++ b/skinlcars.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skinlcars.c 2.5 2012/06/04 08:53:57 kls Exp $ + * $Id: skinlcars.c 2.6 2012/06/04 09:35:43 kls Exp $ */ // "Star Trek: The Next Generation"(R) is a registered trademark of Paramount Pictures, @@ -515,7 +515,7 @@ void cSkinLCARSDisplayChannel::SetChannel(const cChannel *Channel, int Number) else if (Number) ChNumber = cString::sprintf("%d-", Number); else - ChName = ChannelString(NULL, NULL); + ChName = ChannelString(NULL, 0); osd->DrawText(xc00, yc00, ChNumber, Theme.Color(clrChannelFrameFg), frameColor, tallFont, xc02 - xc00, yc02 - yc00, taTop | taRight | taBorder); osd->DrawText(xc03, yc00, ChName, Theme.Color(clrChannelName), Theme.Color(clrBackground), tallFont, xi - xc03 - lineHeight, 0, taTop | taLeft); lastSignalDisplay = 0; |