summaryrefslogtreecommitdiff
path: root/muse2/muse/undo.h
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2012-07-01 16:42:16 +0000
committerFlorian Jung <flo@windfisch.org>2012-07-01 16:42:16 +0000
commit9c4664d162c537ba4dd4fd8220971c0fb727103a (patch)
tree37a28b7cd4e4d8984ad4934a4884cd7b4da0505c /muse2/muse/undo.h
parente87fedf1be804f7ec774071d844b1f163be30b96 (diff)
final merge
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;