MCPcopy Create free account
hub / github.com/LMMS/lmms / saveSettings

Method saveSettings

src/core/Note.cpp:172–184  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

170
171
172void 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

Callers 2

saveStateMethod · 0.45
saveProjectFileMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected