]> git.vomp.tv Git - vompclient.git/commitdiff
Fix typing in channel number in radio list
authorMarten Richter <marten.richter@freenet.de>
Wed, 20 Nov 2013 07:26:51 +0000 (08:26 +0100)
committerMarten Richter <marten.richter@freenet.de>
Wed, 20 Nov 2013 07:26:51 +0000 (08:26 +0100)
vchannellist.cc

index 1646896b53fa55927b560e3bc779c9025317ed6f..69d5fb0d579bfa7801379f4f125ab90e255c9815 100644 (file)
@@ -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);
-    */
-    }
+    
+    }*/
   }
 }