summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-08-06 07:05:19 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-08-06 07:05:19 +0200
commit3e366d1ec4d11de00ebf596ab2d5cbe5e05540b1 (patch)
treebc29fe43ce5ebe59a0ff9ab0ae1637578db69d9e /menu.c
parent26fa8beca6cf0c3787fbe6118deb7f2bea903133 (diff)
downloadvdr-3e366d1ec4d11de00ebf596ab2d5cbe5e05540b1.tar.gz
vdr-3e366d1ec4d11de00ebf596ab2d5cbe5e05540b1.tar.bz2
No more upper limit for the value of 'Pnr'
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/menu.c b/menu.c
index 6df56193..15c8379a 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.21 2000/07/30 15:04:10 kls Exp $
+ * $Id: menu.c 1.22 2000/08/06 07:02:52 kls Exp $
*/
#include "menu.h"
@@ -512,7 +512,7 @@ cMenuEditChannel::cMenuEditChannel(int Index)
Add(new cMenuEditIntItem( "Vpid", &data.vpid, 0, 10000)); //TODO exact limits???
Add(new cMenuEditIntItem( "Apid", &data.apid, 0, 10000)); //TODO exact limits???
Add(new cMenuEditIntItem( "CA", &data.ca, 0, cDvbApi::NumDvbApis));
- Add(new cMenuEditIntItem( "Pnr", &data.pnr, 0, 10000)); //TODO exact limits???
+ Add(new cMenuEditIntItem( "Pnr", &data.pnr, 0));
}
}