diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-01 14:57:12 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-05-01 14:57:12 +0200 |
commit | eefd2b88f14d64461a91a4e02439dee96fbcdc42 (patch) | |
tree | 338d22c6b7ef79c6cd7e429243d90d8baf20794e /menu.c | |
parent | a0449f07ef21389824524188d7b8ece7d05b919a (diff) | |
download | vdr-eefd2b88f14d64461a91a4e02439dee96fbcdc42.tar.gz vdr-eefd2b88f14d64461a91a4e02439dee96fbcdc42.tar.bz2 |
Fixed the unit of the 'SVDRP timeout' setup parameter
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.188 2002/04/26 12:43:32 kls Exp $ + * $Id: menu.c 1.189 2002/05/01 14:54:10 kls Exp $ */ #include "menu.h" @@ -2242,7 +2242,7 @@ void cMenuSetupMisc::Set(void) SetupTitle("Miscellaneous"); Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Min. event timeout (min)"), &data.MinEventTimeout)); Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$Min. user inactivity (min)"), &data.MinUserInactivity)); - Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$SVDRP timeout (min)"), &data.SVDRPTimeout)); + Add(new cMenuEditIntItem( tr("Setup.Miscellaneous$SVDRP timeout (s)"), &data.SVDRPTimeout)); } // --- cMenuSetup ------------------------------------------------------------ |