diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-22 13:23:22 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2004-05-22 13:23:22 +0200 |
commit | 5aacc51c14491fa029f6408f45685bf505c606b5 (patch) | |
tree | 488ca1c1cadf5bf7123bfd359c3812af2946eec9 /skinclassic.c | |
parent | bcbb3137e7ae46a124c1d3af03d7be1b23f5846b (diff) | |
download | vdr-5aacc51c14491fa029f6408f45685bf505c606b5.tar.gz vdr-5aacc51c14491fa029f6408f45685bf505c606b5.tar.bz2 |
Single shot timers and events now show the day of week
Diffstat (limited to 'skinclassic.c')
-rw-r--r-- | skinclassic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/skinclassic.c b/skinclassic.c index 2c4b5632..fe9c0254 100644 --- a/skinclassic.c +++ b/skinclassic.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: skinclassic.c 1.1 2004/05/15 14:51:18 kls Exp $ + * $Id: skinclassic.c 1.2 2004/05/22 13:04:54 kls Exp $ */ #include "skinclassic.h" @@ -280,7 +280,7 @@ void cSkinClassicDisplayMenu::SetEvent(const cEvent *Event) int y = y2; cTextScroller ts; char t[32]; - snprintf(t, sizeof(t), "%s %s - %s", Event->GetDateString(), Event->GetTimeString(), Event->GetEndTimeString());//TODO dayname, no year + snprintf(t, sizeof(t), "%s %s - %s", Event->GetDateString(), Event->GetTimeString(), Event->GetEndTimeString()); ts.Set(osd, xl, y, x1 - xl, y3 - y, t, font, Theme.Color(clrMenuEventTime), Theme.Color(clrBackground)); if (Event->Vps() && Event->Vps() != Event->StartTime()) { char *buffer; |