| 223 | |
| 224 | |
| 225 | void DataFile::write( QTextStream & _strm ) |
| 226 | { |
| 227 | if( type() == SongProject || type() == SongProjectTemplate |
| 228 | || type() == InstrumentTrackSettings ) |
| 229 | { |
| 230 | cleanMetaNodes( documentElement() ); |
| 231 | } |
| 232 | |
| 233 | save(_strm, 2); |
| 234 | } |
| 235 | |
| 236 | |
| 237 |