| 28 | |
| 29 | |
| 30 | void 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 |
nothing calls this directly
no test coverage detected