mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
unfinished work on selection/HiG details, restore range ops destroyed by autoscroll changes
git-svn-id: svn://localhost/trunk/ardour2@544 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
0354401e00
commit
415d3a5018
22 changed files with 587 additions and 280 deletions
|
|
@ -77,6 +77,7 @@ UndoCommand::clear ()
|
|||
void
|
||||
UndoCommand::undo ()
|
||||
{
|
||||
cerr << "Undo " << _name << endl;
|
||||
for (list<UndoAction>::reverse_iterator i = undo_actions.rbegin(); i != undo_actions.rend(); ++i) {
|
||||
(*i)();
|
||||
}
|
||||
|
|
@ -85,6 +86,7 @@ UndoCommand::undo ()
|
|||
void
|
||||
UndoCommand::redo ()
|
||||
{
|
||||
cerr << "Redo " << _name << endl;
|
||||
for (list<UndoAction>::iterator i = redo_actions.begin(); i != redo_actions.end(); ++i) {
|
||||
(*i)();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue