| 45 | |
| 46 | |
| 47 | void InlineAutomation::loadSettings( const QDomElement & _this ) |
| 48 | { |
| 49 | QDomNode node = _this.namedItem( AutomationPattern::classNodeName() ); |
| 50 | if( node.isElement() ) |
| 51 | { |
| 52 | node = node.namedItem( nodeName() ); |
| 53 | if( node.isElement() ) |
| 54 | { |
| 55 | automationPattern()->loadSettings( |
| 56 | node.toElement() ); |
| 57 | } |
| 58 | } |
| 59 | } |
| 60 |
nothing calls this directly
no test coverage detected