summaryrefslogtreecommitdiff
path: root/muse2/muse/undo.h
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/muse/undo.h')
-rw-r--r--muse2/muse/undo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/muse2/muse/undo.h b/muse2/muse/undo.h
index b88a9457..2f582d8e 100644
--- a/muse2/muse/undo.h
+++ b/muse2/muse/undo.h
@@ -125,12 +125,12 @@ struct UndoOp {
UndoOp(UndoType type, Track* track, const char* old_name, const char* new_name);
UndoOp(UndoType type, Track* track, int old_chan, int new_chan);
UndoOp(UndoType type);
- };
+};
class Undo : public std::list<UndoOp> {
public:
bool empty() const;
- };
+};
typedef Undo::iterator iUndoOp;
typedef Undo::reverse_iterator riUndoOp;
@@ -141,7 +141,7 @@ class UndoList : public std::list<Undo> {
public:
void clearDelete();
UndoList(bool _isUndo) : std::list<Undo>() { isUndo=_isUndo; }
- };
+};
typedef UndoList::iterator iUndo;
typedef UndoList::reverse_iterator riUndo;