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

Method saveSettings

src/core/InlineAutomation.cpp:30–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29
30void InlineAutomation::saveSettings( QDomDocument & _doc,
31 QDomElement & _parent )
32{
33 if( hasAutomation() )
34 {
35 QDomElement ap = _doc.createElement(
36 AutomationPattern::classNodeName() );
37 QDomElement v = _doc.createElement( nodeName() );
38 automationPattern()->saveSettings( _doc, v );
39 ap.appendChild( v );
40 _parent.appendChild( ap );
41 }
42}
43
44
45

Callers

nothing calls this directly

Calls 3

hasAutomationFunction · 0.85
classNodeNameFunction · 0.50
nodeNameFunction · 0.50

Tested by

no test coverage detected