From cda43a8613a0dffdd0081e66ae311c66b16607b1 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 5 Nov 2000 18:42:05 +0100 Subject: [PATCH] Made 'SetSystemTime' boolean in 'Setup' menu --- HISTORY | 1 + menu.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index b7801f08..cc1170ec 100644 --- a/HISTORY +++ b/HISTORY @@ -271,3 +271,4 @@ Video Disk Recorder Revision History - Date and time in the title of an event info page are now always right adjusted. - The 'current channel' is now handled device specific (in case there is more than one DVB card). +- The 'SetSystemTime' option in the "Setup" menu is now shown as "yes/no". diff --git a/menu.c b/menu.c index 4240beb0..42ce0aaa 100644 --- a/menu.c +++ b/menu.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.42 2000/11/05 13:42:39 kls Exp $ + * $Id: menu.c 1.43 2000/11/05 18:41:09 kls Exp $ */ #include "menu.h" @@ -1440,7 +1440,7 @@ cMenuSetup::cMenuSetup(void) Add(new cMenuEditBoolItem("MarkInstantRecord", &data.MarkInstantRecord)); Add(new cMenuEditIntItem( "LnbFrequLo", &data.LnbFrequLo)); Add(new cMenuEditIntItem( "LnbFrequHi", &data.LnbFrequHi)); - Add(new cMenuEditIntItem( "SetSystemTime", &data.SetSystemTime)); + Add(new cMenuEditBoolItem("SetSystemTime", &data.SetSystemTime)); Add(new cMenuEditIntItem( "MarginStart", &data.MarginStart)); Add(new cMenuEditIntItem( "MarginStop", &data.MarginStop)); }