]> git.vomp.tv Git - vompclient.git/commitdiff
Update for windows
authorChris Tallon <chris@vomp.tv>
Sat, 25 Nov 2006 16:52:49 +0000 (16:52 +0000)
committerChris Tallon <chris@vomp.tv>
Sat, 25 Nov 2006 16:52:49 +0000 (16:52 +0000)
vvideolive.cc

index 919f164d43b2a2bf05dbfe6adef8270304428fec..9bcdcddbd0b13c59c16e6dbb813b9391162fe23f 100644 (file)
@@ -41,12 +41,12 @@ VVideoLive::VVideoLive(ChannelList* tchanList, ULONG tstreamType, VChannelList*
 
   if (streamType == VDR::RADIO)
   {
-    (PlayerRadio*)player = new PlayerRadio(Command::getInstance(), this, false);
+    (PlayerRadio*)player = (void*)new PlayerRadio(Command::getInstance(), this, false);
     ((PlayerRadio*)player)->init(0, 0);
   }
   else
   {
-    (Player*)player = new Player(Command::getInstance(), this, false);
+    (Player*)player = (void*)new Player(Command::getInstance(), this, false);
     ((Player*)player)->init();
   }