]> git.sesse.net Git - vlc/commitdiff
Compile fix
authorChristophe Mutricy <xtophe@videolan.org>
Fri, 20 Jun 2008 17:08:36 +0000 (18:08 +0100)
committerChristophe Mutricy <xtophe@videolan.org>
Fri, 20 Jun 2008 17:08:36 +0000 (18:08 +0100)
That would need to be properly fix with the new embedded vout API

modules/gui/skins2/src/vlcproc.cpp

index 31da18587bc06ed124367a9c44dbb82e35b0dcc8..89255190c5edc9ce1f5eb3bd9b334444639b4486 100644 (file)
@@ -165,10 +165,10 @@ VlcProc::VlcProc( intf_thread_t *pIntf ): SkinObject( pIntf ),
     pIntf->b_interaction = true;
 
     // Callbacks for vout requests
-    getIntf()->pf_request_window = &getWindow;
+/*    getIntf()->pf_request_window = &getWindow;
     getIntf()->pf_release_window = &releaseWindow;
     getIntf()->pf_control_window = &controlWindow;
-
+*/
     getIntf()->p_sys->p_input = NULL;
 }
 
@@ -183,10 +183,10 @@ VlcProc::~VlcProc()
     }
 
     // Callbacks for vout requests
-    getIntf()->pf_request_window = NULL;
+/*    getIntf()->pf_request_window = NULL;
     getIntf()->pf_release_window = NULL;
     getIntf()->pf_control_window = NULL;
-
+*/
     var_DelCallback( getIntf()->p_sys->p_playlist, "intf-change",
                      onIntfChange, this );
     var_DelCallback( getIntf()->p_sys->p_playlist, "item-append",