[vlc-commits] mac plugin: compilation fix

Felix Paul Kühne git at videolan.org
Sun Dec 30 22:03:52 CET 2012


npapi-vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Dec 30 22:03:24 2012 +0100| [42cc1f34bb8eeb750e02e2881023dcb274f52afa] | committer: Felix Paul Kühne

mac plugin: compilation fix

> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=42cc1f34bb8eeb750e02e2881023dcb274f52afa
---

 npapi/vlcplugin_mac.cpp |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/npapi/vlcplugin_mac.cpp b/npapi/vlcplugin_mac.cpp
index 36aaaac..67706cf 100644
--- a/npapi/vlcplugin_mac.cpp
+++ b/npapi/vlcplugin_mac.cpp
@@ -133,7 +133,7 @@ bool VlcPluginMac::handle_event(void *event)
     }
 
     if (eventType == NPCocoaEventDrawRect) {
-        if (playlist_isplaying && p_plugin->player_has_vout)
+        if (VlcPluginBase::playlist_isplaying() && VlcPluginBase::player_has_vout())
             return false;
 
         CGContextRef cgContext = cocoaEvent->data.draw.context;



More information about the vlc-commits mailing list