comparison base/Model.cpp @ 77:2beca8ddcdc3

* Add BZipFileDevice to handle bzip2 compress/uncompress without all that ugly code in MainWindow.cpp * Remove all that ugly code in MainWindow.cpp and replace with uses of BZipFileDevice * Fix layer import/export for SV XML layers * and a few other minor fixes
author Chris Cannam
date Wed, 12 Apr 2006 09:59:40 +0000
parents af2725b5d6fe
children c30728d5625c
comparison
equal deleted inserted replaced
76:af2725b5d6fe 77:2beca8ddcdc3
38 38
39 s += indent; 39 s += indent;
40 40
41 s += QString("<model id=\"%1\" name=\"%2\" sampleRate=\"%3\" start=\"%4\" end=\"%5\" %6/>\n") 41 s += QString("<model id=\"%1\" name=\"%2\" sampleRate=\"%3\" start=\"%4\" end=\"%5\" %6/>\n")
42 .arg(getObjectExportId(this)) 42 .arg(getObjectExportId(this))
43 .arg(objectName()) 43 .arg(encodeEntities(objectName()))
44 .arg(getSampleRate()) 44 .arg(getSampleRate())
45 .arg(getStartFrame()) 45 .arg(getStartFrame())
46 .arg(getEndFrame()) 46 .arg(getEndFrame())
47 .arg(extraAttributes); 47 .arg(extraAttributes);
48 48