| 136 | |
| 137 | |
| 138 | void PeakController::saveSettings( QDomDocument & _doc, QDomElement & _this ) |
| 139 | { |
| 140 | if( m_peakEffect ) |
| 141 | { |
| 142 | Controller::saveSettings( _doc, _this ); |
| 143 | |
| 144 | _this.setAttribute( "effectId", m_peakEffect->m_effectId ); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | |
| 149 |
nothing calls this directly
no test coverage detected