From 9cd2d1f0241c5ce4330db60aa6b8fa189016177b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antti=20Sepp=C3=A4l=C3=A4?= Date: Fri, 19 Oct 2007 17:07:13 +0000 Subject: [PATCH] Fix channel editor EXT entry. --- setup.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.c b/setup.c index 4d1b5b4..07b8049 100644 --- a/setup.c +++ b/setup.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: setup.c,v 1.35 2007/10/16 22:13:44 rahrenbe Exp $ + * $Id: setup.c,v 1.36 2007/10/19 17:07:13 ajhseppa Exp $ */ #include @@ -180,7 +180,8 @@ void cIptvMenuEditChannel::Setup(void) int current = Current(); Clear(); // IPTV specific settings - Add(new cMenuEditStraItem(tr("Protocol"), &data.protocol, 3, protocols)); + Add(new cMenuEditStraItem(tr("Protocol"), &data.protocol, + eProtocolCount, protocols)); switch (data.protocol) { case eProtocolFILE: Add(new cMenuEditStrItem(trVDR("File"), data.location, sizeof(data.location), trVDR(FileNameChars)));