]> git.sesse.net Git - vlc/commitdiff
Remove unuseful debug and move a debug message to a warned one.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 11 Aug 2008 16:10:31 +0000 (09:10 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 11 Aug 2008 16:10:31 +0000 (09:10 -0700)
modules/gui/qt4/menus.cpp

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