| 171 | } |
| 172 | |
| 173 | int CParameterPlayer::SetAudioOutputVolume(float fVolume) |
| 174 | { |
| 175 | if(m_fAudioOutputVolume == fVolume) |
| 176 | return 0; |
| 177 | m_fAudioOutputVolume = fVolume; |
| 178 | SetModified(true); |
| 179 | emit sigAudioOutputVolume(m_fAudioOutputVolume); |
| 180 | return 0; |
| 181 | } |
| 182 | |
| 183 | int CParameterPlayer::OnLoad(QSettings &set) |
| 184 | { |
no outgoing calls
no test coverage detected