Commit 513fab81 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Remove unuseful debug and move a debug message to a warned one.

parent 4201d7c1
...@@ -371,7 +371,6 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, ...@@ -371,7 +371,6 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf,
} }
if( mi ) if( mi )
{ {
msg_Dbg( p_intf, "I am here" );
/* Minimal View */ /* Minimal View */
QAction *action = menu->addAction( qtr( "Mi&nimal View..." ), mi, QAction *action = menu->addAction( qtr( "Mi&nimal View..." ), mi,
SLOT( toggleMinimalView() ), qtr( "Ctrl+H" ) ); SLOT( toggleMinimalView() ), qtr( "Ctrl+H" ) );
...@@ -962,7 +961,7 @@ QMenu * QVLCMenu::Populate( intf_thread_t *p_intf, ...@@ -962,7 +961,7 @@ QMenu * QVLCMenu::Populate( intf_thread_t *p_intf,
p_object = ( vlc_object_t * )vlc_object_get( objects[i] ); p_object = ( vlc_object_t * )vlc_object_get( objects[i] );
if( !p_object ) if( !p_object )
{ {
msg_Dbg( p_intf, "object %d not found !", objects[i] ); msg_Warn( p_intf, "object %d not found !", objects[i] );
continue; continue;
} }
} }
......
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