]> git.sesse.net Git - vlc/commitdiff
remove two debug fprintfs
authorAntoine Cellerier <dionoea@videolan.org>
Thu, 31 Mar 2005 21:36:30 +0000 (21:36 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Thu, 31 Mar 2005 21:36:30 +0000 (21:36 +0000)
modules/gui/wxwindows/interface.cpp

index f27e169de406e4fd3628b853c302cf93821a3d8a..57d9161bfa835d880445f881fb456223026b3486 100644 (file)
@@ -1213,14 +1213,12 @@ void Interface::OnMute( wxCommandEvent& WXUNUSED(event) )
         p_tool->SetNormalBitmap( wxBitmap( speaker_xpm ) );
         p_tool->SetLabel( wxU(_("")) );
         p_tool->SetShortHelp( wxU(_(HELP_MUTE)) );
-        fprintf( stderr, "sound is on\n");
     }
     else
     {
         p_tool->SetNormalBitmap( wxBitmap( speaker_mute_xpm ) );
         p_tool->SetLabel( wxU(_("")) );
         p_tool->SetShortHelp( wxU(_(HELP_MUTE)) );
-        fprintf( stderr, "sound is off\n");
     }
 
     GetToolBar()->Realize();