]> git.sesse.net Git - vlc/commitdiff
Qt4 - less debug messages.
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 17 Dec 2007 00:48:49 +0000 (00:48 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 17 Dec 2007 00:48:49 +0000 (00:48 +0000)
modules/gui/qt4/main_interface.cpp

index 8261c9496772712b29625ca2be5f3fd9abeb6476..0271969fe1516bb56574d81d86b61e3f77fdec91 100644 (file)
@@ -698,7 +698,6 @@ void MainInterface::togglePlaylist()
     If no playlist exist, then create one and attach it to the DockPL*/
     if( !playlistWidget )
     {
-        msg_Dbg( p_intf, "Creating a new playlist" );
         playlistWidget = new PlaylistWidget( p_intf, settings );
 
         /* Add it to the parent DockWidget */
@@ -708,9 +707,10 @@ void MainInterface::togglePlaylist()
         addDockWidget( Qt::BottomDockWidgetArea, dockPL );
 
         /* Make the playlist floating is requested. Default is not. */
+        //FIXME
         if( settings->value( "playlist-floats", false ).toBool() );
         {
-            msg_Dbg( p_intf, "we don't want it inside");
+            msg_Dbg( p_intf, "we don't want the playlist inside");
             dockPL->setFloating( true );
         }
     }
@@ -745,7 +745,7 @@ void MainInterface::toggleMinimalView()
 /* Well, could it, actually ? Probably dangerous ... */
 void MainInterface::doComponentsUpdate()
 {
-    msg_Dbg( p_intf, "coi " );
+    msg_Dbg( p_intf, "Updating the geometry" );
     updateGeometry();
     resize( sizeHint() );
 }