[vlc-devel] commit: Better msg. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Wed Dec 31 13:44:16 CET 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Wed Dec 31 13:11:47 2008 +0100| [601ac54e321b6e18235b4e6eeb7a658ac44b423c] | committer: Jean-Baptiste Kempf
Better msg.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=601ac54e321b6e18235b4e6eeb7a658ac44b423c
---
modules/gui/qt4/input_manager.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index ce5c8bc..55beb8e 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -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;
More information about the vlc-devel
mailing list