| 243 | |
| 244 | |
| 245 | void LfoControllerDialog::askUserDefWave() |
| 246 | { |
| 247 | SampleBuffer * sampleBuffer = dynamic_cast<LfoController*>(this->model())-> |
| 248 | m_userDefSampleBuffer; |
| 249 | QString fileName = sampleBuffer->openAndSetWaveformFile(); |
| 250 | if( fileName.isEmpty() == false ) |
| 251 | { |
| 252 | // TODO: |
| 253 | ToolTip::add( m_userWaveBtn, sampleBuffer->audioFile() ); |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | |
| 258 |
nothing calls this directly
no test coverage detected