Mercurial > hg > svcore
comparison data/model/WaveFileModel.cpp @ 288:7b96b3bd4bae
* Fix #1757772 tempo, dynamic related plug-ins bug -- make auto-align
only auto-align if there is a unit involved
* Fix #1755366 text layer bug in retrieved session
* Fix input model selection in plugin parameter dialog (was being ignored)
* Use lighter background than the standard widget one for panes (assuming the
widget background is light but not white) -- similarly darker if dark
* Fix colour reference counting in loaded session in SingleColourLayer
* Reset overview pane colour when switching dark background on or off
author | Chris Cannam |
---|---|
date | Tue, 14 Aug 2007 13:58:53 +0000 |
parents | 20028c634494 |
children | 92e8dbde73cd |
comparison
equal
deleted
inserted
replaced
287:557e00480279 | 288:7b96b3bd4bae |
---|---|
616 Model::toXml(out, indent, | 616 Model::toXml(out, indent, |
617 QString("type=\"wavefile\" file=\"%1\" %2") | 617 QString("type=\"wavefile\" file=\"%1\" %2") |
618 .arg(encodeEntities(m_path)).arg(extraAttributes)); | 618 .arg(encodeEntities(m_path)).arg(extraAttributes)); |
619 } | 619 } |
620 | 620 |
621 QString | |
622 WaveFileModel::toXmlString(QString indent, | |
623 QString extraAttributes) const | |
624 { | |
625 return Model::toXmlString(indent, | |
626 QString("type=\"wavefile\" file=\"%1\" %2") | |
627 .arg(encodeEntities(m_path)).arg(extraAttributes)); | |
628 } | |
629 | 621 |