Changeset a91d3a7843e8c61efc8d587d13ca4181a9492361
- 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
| r756b421 |
ra91d3a7 |
|
| 518 | 518 | { |
|---|
| 519 | 519 | /* Misc updates */ |
|---|
| 520 | | // if( !(i_update_counter % 10) ) ((VLCVolCtrl *)volctrl)->UpdateVolume(); |
|---|
| 521 | 520 | |
|---|
| 522 | 521 | if( playlist_manager ) playlist_manager->Update(); |
|---|
| … | … | |
| 1224 | 1223 | aout_VolumeGet(p_intf, &i_volume); |
|---|
| 1225 | 1224 | |
|---|
| 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. */ |
|---|
| 1228 | 1227 | p_tool->SetNormalBitmap( wxBitmap( i_volume ? speaker_xpm : speaker_mute_xpm ) ); |
|---|
| 1229 | 1228 | GetToolBar()->Realize(); |
|---|
| … | … | |
| 1234 | 1233 | GetToolBar()->Update(); |
|---|
| 1235 | 1234 | #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 */ |
|---|
| 1237 | 1237 | GetToolBar()->ToggleTool( ToggleMute_Event, true ); |
|---|
| 1238 | 1238 | GetToolBar()->ToggleTool( ToggleMute_Event, false ); |
|---|