File save/load of rate.

This commit is contained in:
Tats
2014-10-21 17:47:55 +00:00
parent c8e0c23858
commit fa400b9788
2 changed files with 11 additions and 4 deletions
+6
View File
@@ -75,6 +75,12 @@ void ProjectWriter::writeItem(Paint *item)
_xml.writeTextElement("y", os.str().c_str());
}
{
std::ostringstream os;
os << media->getRate();
_xml.writeTextElement("rate", os.str().c_str());
}
_xml.writeEndElement();
//_xml.writeEmptyElement("hello");
}