Use correct property names in PBD::Undo class

These have been "normalized" in XMLProperty ctor for many years, so this does
not change the Session format.
This commit is contained in:
Tim Mayberry 2017-04-20 10:55:31 +10:00
parent 384478a745
commit 048af97b54
1 changed files with 2 additions and 2 deletions

View File

@ -135,8 +135,8 @@ UndoTransaction::redo ()
XMLNode &UndoTransaction::get_state()
{
XMLNode *node = new XMLNode ("UndoTransaction");
node->set_property("tv_sec", (int64_t)_timestamp.tv_sec);
node->set_property("tv_usec", (int64_t)_timestamp.tv_usec);
node->set_property("tv-sec", (int64_t)_timestamp.tv_sec);
node->set_property("tv-usec", (int64_t)_timestamp.tv_usec);
node->set_property("name", _name);
list<Command*>::iterator it;