<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
git version control wrote:
<blockquote cite="mid:20080926023230.17DF023BFD@skanda.videolan.org"
type="cite">
<pre wrap="">vlc | branch: 0.9-bugfix | Jean-Baptiste Kempf <a class="moz-txt-link-rfc2396E" href="mailto:jb@videolan.org"><jb@videolan.org></a> | Thu Sep 25 19:34:50 2008 -0700| [a0383d980c531a1d35b52db9b2c1d99c427a4181] | committer: Jean-Baptiste Kempf
Qt4: go around another Win32 Vout bug.
</pre>
<blockquote type="cite">
<pre wrap=""><a class="moz-txt-link-freetext" href="http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a0383d980c531a1d35b52db9b2c1d99c427a4181">http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a0383d980c531a1d35b52db9b2c1d99c427a4181</a>
</pre>
</blockquote>
<pre wrap=""><!---->---
modules/gui/qt4/components/interface_widgets.cpp | 12 ++++++++++++
modules/gui/qt4/components/interface_widgets.hpp | 3 ++-
2 files changed, 14 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index fd2430c..3c49374 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -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
*/
diff --git a/modules/gui/qt4/components/interface_widgets.hpp b/modules/gui/qt4/components/interface_widgets.hpp
index 5bfcd1f..ee02464 100644
--- a/modules/gui/qt4/components/interface_widgets.hpp
+++ b/modules/gui/qt4/components/interface_widgets.hpp
@@ -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:
_______________________________________________
vlc-devel mailing list
To unsubscribe or modify your subscription options:
<a class="moz-txt-link-freetext" href="http://mailman.videolan.org/listinfo/vlc-devel">http://mailman.videolan.org/listinfo/vlc-devel</a>
</pre>
</blockquote>
please revert this it doesn't work at all.<br>
</body>
</html>