diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-17 13:47:12 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2008-02-17 13:47:12 +0100 |
commit | dc7c5464fc07b31b904ea8118f104a7cb289dd24 (patch) | |
tree | 9132d34f62d493b6d66059003eb36eb341a36ef1 /skinsttng.c | |
parent | 54b4d4e4e752ce10142c1f0c61f39c3782e460d9 (diff) | |
download | vdr-dc7c5464fc07b31b904ea8118f104a7cb289dd24.tar.gz vdr-dc7c5464fc07b31b904ea8118f104a7cb289dd24.tar.bz2 |
Introduced 'operator const void * ()' in cString
Diffstat (limited to 'skinsttng.c')
-rw-r--r-- | skinsttng.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skinsttng.c b/skinsttng.c index cf67563b..02ab61b5 100644 --- a/skinsttng.c +++ b/skinsttng.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skinsttng.c 1.24 2008/02/17 12:09:38 kls Exp $ + * $Id: skinsttng.c 1.25 2008/02/17 13:35:09 kls Exp $ */ // Star Trek: The Next Generation® is a registered trademark of Paramount Pictures @@ -308,7 +308,7 @@ void cSkinSTTNGDisplayChannel::Flush(void) const cFont *font = cFont::GetFont(fontSml); cString date = DayDateTime(); int w = font->Width(date); - if (!lastDate || strcmp(date, lastDate)) { + if (!*lastDate || strcmp(date, lastDate)) { osd->DrawText(x4 - w - 2, y7 - font->Height(), date, Theme.Color(clrChannelDate), frameColor, font, w); lastDate = date; } @@ -672,7 +672,7 @@ void cSkinSTTNGDisplayMenu::Flush(void) { if (!message) { cString date = DayDateTime(); - if (!lastDate || strcmp(date, lastDate)) { + if (!*lastDate || strcmp(date, lastDate)) { const cFont *font = cFont::GetFont(fontSml); int w = font->Width(date); osd->DrawText(x4 - w - 2, y7 - font->Height(), date, Theme.Color(clrMenuDate), frameColor, font, w); |