From: Marten Richter Date: Wed, 20 Nov 2013 07:26:51 +0000 (+0100) Subject: Fix typing in channel number in radio list X-Git-Url: https://git.vomp.tv/gitweb/?a=commitdiff_plain;h=00beb4c5cf136b2ae6c9b3060ac223af08925963;p=vompclient-marten.git Fix typing in channel number in radio list --- diff --git a/vchannellist.cc b/vchannellist.cc index 1646896..69d5fb0 100644 --- a/vchannellist.cc +++ b/vchannellist.cc @@ -288,21 +288,21 @@ void VChannelList::processMessage(Message* m) } if (!chan) return; - if (chan->type == VDR::VIDEO) - { +/* if (chan->type == VDR::VIDEO) + {*/ VVideoLiveTV* v = new VVideoLiveTV(chanList, chan->number, this); boxstack->add(v); v->go(); - } +/* } else { - /* + VVideoLive* v = new VVideoLive(chanList, chan->type, this); v->draw(); boxstack->add(v); boxstack->update(v); v->channelChange(VVideoLive::NUMBER, chan->number); - */ - } + + }*/ } }