[vlc-commits] commit: Qt4: Fix the VLC hangging in fullscreen on Win32 ( Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Sat May 1 00:23:52 CEST 2010
vlc/vlc-1.1 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat May 1 00:21:12 2010 +0200| [1711b58845ea6a3864843fa79ac04803f91cb76a] | committer: Jean-Baptiste Kempf
Qt4: Fix the VLC hangging in fullscreen on Win32
Close #3513
(cherry picked from commit 5653315c55d846a4bd9902fe4b6a663a5d25baf1)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=1711b58845ea6a3864843fa79ac04803f91cb76a
---
modules/gui/qt4/components/interface_widgets.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/qt4/components/interface_widgets.cpp b/modules/gui/qt4/components/interface_widgets.cpp
index ef729f2..7cfb19c 100644
--- a/modules/gui/qt4/components/interface_widgets.cpp
+++ b/modules/gui/qt4/components/interface_widgets.cpp
@@ -239,7 +239,7 @@ void VideoWidget::release( void )
msg_Dbg( p_intf, "Video is not needed anymore" );
//layout->removeWidget( reparentable );
- delete reparentable;
+ reparentable->deleteLater();
reparentable = NULL;
updateGeometry();
hide();
More information about the vlc-commits
mailing list