| 487 | } |
| 488 | |
| 489 | void MeterToolBar::AdjustOutputGain(int adj) |
| 490 | { |
| 491 | if (adj < 0) { |
| 492 | mPlayMeter->Decrease(-adj); |
| 493 | } |
| 494 | else { |
| 495 | mPlayMeter->Increase(adj); |
| 496 | } |
| 497 | |
| 498 | mPlayMeter->UpdateSliderControl(); |
| 499 | } |
| 500 | |
| 501 | void MeterToolBar::AdjustInputGain(int adj) |
| 502 | { |
no test coverage detected