| 198 | |
| 199 | |
| 200 | void LfoController::loadSettings( const QDomElement & _this ) |
| 201 | { |
| 202 | Controller::loadSettings( _this ); |
| 203 | |
| 204 | m_baseModel.loadSettings( _this, "base" ); |
| 205 | m_speedModel.loadSettings( _this, "speed" ); |
| 206 | m_amountModel.loadSettings( _this, "amount" ); |
| 207 | m_phaseModel.loadSettings( _this, "phase" ); |
| 208 | m_waveModel.loadSettings( _this, "wave" ); |
| 209 | m_multiplierModel.loadSettings( _this, "multiplier" ); |
| 210 | m_userDefSampleBuffer->setAudioFile( _this.attribute("userwavefile" ) ); |
| 211 | |
| 212 | updateSampleFunction(); |
| 213 | } |
| 214 | |
| 215 | |
| 216 |
nothing calls this directly
no test coverage detected