Changeset a91d3a7843e8c61efc8d587d13ca4181a9492361

Show
Ignore:
Timestamp:
12/04/08 20:11:27 (8 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208023887 +0200
git-parent:

[756b42166e316a1b767d3d3f66d5e8f0497c5568]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208023529 +0200
Message:

wxwidgets: Comments cleanup for previous commit.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/gui/wxwidgets/interface.cpp

    r756b421 ra91d3a7  
    518518{ 
    519519    /* Misc updates */ 
    520 //    if( !(i_update_counter % 10) ) ((VLCVolCtrl *)volctrl)->UpdateVolume(); 
    521520 
    522521    if( playlist_manager ) playlist_manager->Update(); 
     
    12241223    aout_VolumeGet(p_intf, &i_volume); 
    12251224 
    1226 // Updating the Mute Button... IF the slider is completely moved to the left, 
    1227 // the mute icon is shown too. 
     1225    /* Updating the Mute Button... IF the slider is completely moved to the left, 
     1226     * the mute icon is shown too. */ 
    12281227    p_tool->SetNormalBitmap( wxBitmap( i_volume ? speaker_xpm : speaker_mute_xpm ) ); 
    12291228    GetToolBar()->Realize(); 
     
    12341233    GetToolBar()->Update(); 
    12351234#endif 
    1236 // the Toggle to true and false is nescessary; otherwise, the Icon is not repainted 
     1235    /* the Toggle to true and false is nescessary; otherwise, the Icon 
     1236     * is not repainted */ 
    12371237    GetToolBar()->ToggleTool( ToggleMute_Event, true ); 
    12381238    GetToolBar()->ToggleTool( ToggleMute_Event, false );