]> git.sesse.net Git - vlc/commitdiff
Better msg.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 31 Dec 2008 12:11:47 +0000 (13:11 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 31 Dec 2008 12:43:08 +0000 (13:43 +0100)
modules/gui/qt4/input_manager.cpp

index ce5c8bc856c1b8f3569a0e580a4d3fbca68f34a0..55beb8e7ef776a60ee39928993d496cd17dda845 100644 (file)
@@ -78,7 +78,7 @@ void InputManager::setInput( input_thread_t *_p_input )
     p_input = _p_input;
     if( p_input && !( p_input->b_dead || !vlc_object_alive (p_input) ) )
     {
-    msg_Warn( p_intf, "Setting the input" );
+        msg_Warn( p_intf, "IM: Setting an input" );
         vlc_object_hold( p_input );
         emit statusChanged( PLAYING_S );
         UpdateName();
@@ -102,8 +102,8 @@ void InputManager::setInput( input_thread_t *_p_input )
    p_input is released once here */
 void InputManager::delInput()
 {
-    msg_Warn( p_intf, "Deleting the input" );
     if( !p_input ) return;
+    msg_Warn( p_intf, "IM: Deleting the input" );
 
     delCallbacks();
     i_old_playing_status = END_S;