| 156 | } |
| 157 | |
| 158 | int CParameterPlayer::SetAudioOutputMuted(bool bMuted) |
| 159 | { |
| 160 | if(m_bAudioOutputMuted == bMuted) |
| 161 | return 0; |
| 162 | m_bAudioOutputMuted = bMuted; |
| 163 | SetModified(true); |
| 164 | emit sigAudioOutputMuted(m_bAudioOutputMuted); |
| 165 | return 0; |
| 166 | } |
| 167 | |
| 168 | const float CParameterPlayer::GetAudioOutputVolume() const |
| 169 | { |
no outgoing calls
no test coverage detected