Commit a0383d98 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4: go around another Win32 Vout bug.

parent 326dd4db
......@@ -1102,6 +1102,18 @@ FullscreenControllerWidget::~FullscreenControllerWidget()
vlc_mutex_destroy( &lock );
}
void FullscreenControllerWidget::stop()
{
#ifdef WIN32
if( p_vout )
var_SetBool( p_vout, "fullscreen", false );
#endif
THEMIM->stop();
}
/**
* Show fullscreen controller
*/
......
......@@ -201,7 +201,7 @@ protected:
bool b_telexEnabled;
protected slots:
void play();
void stop();
virtual void stop();
void prev();
void next();
void updateVolume( int );
......@@ -273,6 +273,7 @@ private slots:
void hideFSC();
void slowHideFSC();
virtual void stop();
private:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment