Commit 601ac54e authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Better msg.

parent 917f5cc0
...@@ -78,7 +78,7 @@ void InputManager::setInput( input_thread_t *_p_input ) ...@@ -78,7 +78,7 @@ void InputManager::setInput( input_thread_t *_p_input )
p_input = _p_input; p_input = _p_input;
if( p_input && !( p_input->b_dead || !vlc_object_alive (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 ); vlc_object_hold( p_input );
emit statusChanged( PLAYING_S ); emit statusChanged( PLAYING_S );
UpdateName(); UpdateName();
...@@ -102,8 +102,8 @@ void InputManager::setInput( input_thread_t *_p_input ) ...@@ -102,8 +102,8 @@ void InputManager::setInput( input_thread_t *_p_input )
p_input is released once here */ p_input is released once here */
void InputManager::delInput() void InputManager::delInput()
{ {
msg_Warn( p_intf, "Deleting the input" );
if( !p_input ) return; if( !p_input ) return;
msg_Warn( p_intf, "IM: Deleting the input" );
delCallbacks(); delCallbacks();
i_old_playing_status = END_S; i_old_playing_status = END_S;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment