diff options
Diffstat (limited to 'menu_blacklistedit.c')
-rw-r--r-- | menu_blacklistedit.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/menu_blacklistedit.c b/menu_blacklistedit.c index ad5a449..4db0815 100644 --- a/menu_blacklistedit.c +++ b/menu_blacklistedit.c @@ -350,8 +350,7 @@ eOSState cMenuBlacklistEdit::ProcessKey(eKeys Key) if (data.useChannel==1) { LOCK_CHANNELS_READ; - const cChannels *vdrchannels = Channels; - const cChannel *ch = vdrchannels->GetByNumber(channelMin); + const cChannel *ch = Channels->GetByNumber(channelMin); if (ch) data.channelMin = ch; else @@ -359,7 +358,7 @@ eOSState cMenuBlacklistEdit::ProcessKey(eKeys Key) ERROR(tr("*** Invalid Channel ***")); break; } - ch = vdrchannels->GetByNumber(channelMax); + ch = Channels->GetByNumber(channelMax); if (ch) data.channelMax = ch; else |