| 170 | |
| 171 | |
| 172 | void Note::saveSettings( QDomDocument & doc, QDomElement & parent ) |
| 173 | { |
| 174 | parent.setAttribute( "key", m_key ); |
| 175 | parent.setAttribute( "vol", m_volume ); |
| 176 | parent.setAttribute( "pan", m_panning ); |
| 177 | parent.setAttribute( "len", m_length ); |
| 178 | parent.setAttribute( "pos", m_pos ); |
| 179 | |
| 180 | if( m_detuning && m_length ) |
| 181 | { |
| 182 | m_detuning->saveSettings( doc, parent ); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | |
| 187 |
no outgoing calls
no test coverage detected