diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 23:19:00 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-03 23:19:00 +0000 |
commit | e6ca3159a0c1e1551177d3e5549ec44288dbc774 (patch) | |
tree | 03d45e682104dd859de44b011491e44f05aca564 /pages | |
parent | 63a15de53d63a48c160addc7793cea5b7b76ab6c (diff) | |
download | vdr-plugin-live-e6ca3159a0c1e1551177d3e5549ec44288dbc774.tar.gz vdr-plugin-live-e6ca3159a0c1e1551177d3e5549ec44288dbc774.tar.bz2 |
- fixed event start and stop time
Diffstat (limited to 'pages')
-rw-r--r-- | pages/timers.ecpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 9b10dbe..5c42442 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -52,8 +52,8 @@ using namespace vdrlive; <td><$ (timer->Flags() & 1) ? "Ja" : "Nein" $></td> <td><$ timer->Channel()->Name() $></td> <td><$ FormatDateTime(tr("%a, %b %d"), timer->Day()) $></td> - <td><$ FormatDateTime(tr("%I:%M %p"), timer->Start()) $></td> - <td><$ FormatDateTime(tr("%I:%M %p"), timer->Stop()) $></td> + <td><$ FormatDateTime(tr("%I:%M %p"), timer->StartTime()) $></td> + <td><$ FormatDateTime(tr("%I:%M %p"), timer->StopTime()) $></td> <td><$ timer->File() $></td> </tr> <{ |