]> git.sesse.net Git - vlc/commitdiff
Compile fix (not functional)
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Tue, 14 Oct 2008 19:43:45 +0000 (22:43 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Tue, 14 Oct 2008 19:43:45 +0000 (22:43 +0300)
I don't quite understand why Qt4 would subscribe to messages all the
time rather than only when the dialog is on.

modules/gui/qt4/dialogs/messages.cpp
modules/gui/qt4/qt4.cpp

index 5abd1a816d4e2208a1c38e4b1cf92e55dbc92c8e..57f6b1c4a4e83602d2985214070ee9b4397be602 100644 (file)
@@ -134,6 +134,7 @@ void MessagesDialog::updateTab( int index )
 
 void MessagesDialog::updateLog()
 {
+#if 0
     msg_subscription_t *p_sub = p_intf->p_sys->p_sub;
     int i_start;
 
@@ -196,6 +197,7 @@ void MessagesDialog::updateLog()
         p_sub->i_start = i_start;
         vlc_mutex_unlock( p_sub->p_lock );
     }
+#endif
 }
 
 void MessagesDialog::buildTree( QTreeWidgetItem *parentItem,
index d9ad2009d23f0e78d62f71ccee375a8aa731de39..ac00b62d8fb7031f67353981648341c34c1f60cd 100755 (executable)
@@ -264,7 +264,7 @@ static int Open( vlc_object_t *p_this )
     /* Access to the playlist */
     p_intf->p_sys->p_playlist = pl_Hold( p_intf );
     /* Listen to the messages */
-    p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
+    //p_intf->p_sys->p_sub = msg_Subscribe( p_intf->p_libvlc, NULL, NULL );
     /* one settings to rule them all */
 
     var_Create( p_this, "window_widget", VLC_VAR_ADDRESS );
@@ -298,7 +298,7 @@ static void Close( vlc_object_t *p_this )
     }
 
     vlc_object_release( p_intf->p_sys->p_playlist );
-    msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
+    //msg_Unsubscribe( p_intf->p_sys->p_sub );
     free( p_intf->p_sys );
 }