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() ...@@ -1102,6 +1102,18 @@ FullscreenControllerWidget::~FullscreenControllerWidget()
vlc_mutex_destroy( &lock ); vlc_mutex_destroy( &lock );
} }
void FullscreenControllerWidget::stop()
{
#ifdef WIN32
if( p_vout )
var_SetBool( p_vout, "fullscreen", false );
#endif
THEMIM->stop();
}
/** /**
* Show fullscreen controller * Show fullscreen controller
*/ */
......
...@@ -201,7 +201,7 @@ protected: ...@@ -201,7 +201,7 @@ protected:
bool b_telexEnabled; bool b_telexEnabled;
protected slots: protected slots:
void play(); void play();
void stop(); virtual void stop();
void prev(); void prev();
void next(); void next();
void updateVolume( int ); void updateVolume( int );
...@@ -273,6 +273,7 @@ private slots: ...@@ -273,6 +273,7 @@ private slots:
void hideFSC(); void hideFSC();
void slowHideFSC(); void slowHideFSC();
virtual void stop();
private: 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