| 62 | |
| 63 | |
| 64 | void TrackContainer::saveSettings( QDomDocument & _doc, QDomElement & _this ) |
| 65 | { |
| 66 | _this.setTagName( classNodeName() ); |
| 67 | _this.setAttribute( "type", nodeName() ); |
| 68 | |
| 69 | // save settings of each track |
| 70 | m_tracksMutex.lockForRead(); |
| 71 | for( int i = 0; i < m_tracks.size(); ++i ) |
| 72 | { |
| 73 | m_tracks[i]->saveState( _doc, _this ); |
| 74 | } |
| 75 | m_tracksMutex.unlock(); |
| 76 | } |
| 77 | |
| 78 | |
| 79 |
nothing calls this directly
no test coverage detected