[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:21:51 CEST 2010


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat May  1 00:21:12 2010 +0200| [5653315c55d846a4bd9902fe4b6a663a5d25baf1] | committer: Jean-Baptiste Kempf 

Qt4: Fix the VLC hangging in fullscreen on Win32

Close #3513

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=5653315c55d846a4bd9902fe4b6a663a5d25baf1
---

 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