13
0

removed #if 0 code

git-svn-id: svn://localhost/ardour2/branches/3.0@7461 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2010-07-21 17:46:45 +00:00
parent 7ab8dbc2fe
commit 75fb4557e5

View File

@ -172,22 +172,6 @@ void
SMF::close() THROW_FILE_ERROR
{
if (_smf) {
#if 0
/* XXX why would we automatically save-on-close?
*/
PBD::StdioFileDescriptor d (_file_path, "w+");
FILE* f = d.allocate ();
if (f == 0) {
throw FileError ();
}
cerr << "CLOSE: Save SMF to " << _file_path << endl;
if (smf_save(_smf, f) != 0) {
throw FileError();
}
#endif
smf_delete(_smf);
_smf = 0;
_smf_track = 0;