]> git.sesse.net Git - vlc/commitdiff
Remove debug
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Mon, 20 Oct 2008 18:40:10 +0000 (21:40 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Mon, 20 Oct 2008 18:40:10 +0000 (21:40 +0300)
modules/gui/qt4/qt4.cpp

index 8d26754a7d31c790af345aa468151eb2e3c5b98f..ea6adf8944c6dc4a01be53638afd8c881d90c080 100755 (executable)
@@ -445,19 +445,16 @@ static void *Thread( void *obj )
 
     if (p_mi != NULL)
     {
-        msg_Err(p_intf, "locking");
         QMutexLocker locker (&iface.lock);
         p_intf->p_sys->p_mi = NULL;
 
         /* We need to warn to detach from any vout before
          * deleting miP (WindowClose will not be called after it) */
-        msg_Err(p_intf, "releasing");
         p_mi->releaseVideo( NULL );
 
         /* Destroy first the main interface because it is connected to some
            slots in the MainInputManager */
         /* Destroy under the iface lock to sync vout QPointer */
-        msg_Err(p_intf, "destroying");
         delete p_mi;
     }