]> git.sesse.net Git - vlc/blobdiff - modules/gui/skins2/src/vout_window.cpp
Contribs: update freetype to 2.4.2
[vlc] / modules / gui / skins2 / src / vout_window.cpp
index a80b865c718d7c8270a3b52e8d826a56d0cdaea6..034ba46eecd5bea524a6c5eb5cca03fb18050d1d 100644 (file)
 #include <vlc_keys.h>
 
 
-
-int VoutWindow::count = 0;
-
 VoutWindow::VoutWindow( intf_thread_t *pIntf, vout_window_t* pWnd,
                         int width, int height, GenericWindow* pParent ) :
       GenericWindow( pIntf, 0, 0, false, false, pParent,
                      GenericWindow::VoutWindow ),
       m_pWnd( pWnd ), original_width( width ), original_height( height ),
-      m_pParentWindow( pParent ), m_pCtrlVideo( NULL ), m_bFullscreen( false )
+      m_pParentWindow( pParent ), m_pCtrlVideo( NULL )
 {
-    // counter for debug
-    count++;
-
     if( m_pWnd )
         vlc_object_hold( m_pWnd );
 }
@@ -55,9 +49,6 @@ VoutWindow::~VoutWindow()
 {
     if( m_pWnd )
         vlc_object_release( m_pWnd );
-
-    count--;
-    msg_Dbg( getIntf(), "VoutWindow count = %d", count );
 }
 
 
@@ -94,12 +85,6 @@ void VoutWindow::setCtrlVideo( CtrlVideo* pCtrlVideo )
 }
 
 
-void VoutWindow::setFullscreen( bool b_fullscreen )
-{
-    /*TODO: fullscreen implementation */
-}
-
-
 void VoutWindow::processEvent( EvtKey &rEvtKey )
 {
     // Only do the action when the key is down