diff options
Diffstat (limited to 'muse2')
-rw-r--r-- | muse2/muse/undo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/muse/undo.cpp b/muse2/muse/undo.cpp index 924ba745..28458377 100644 --- a/muse2/muse/undo.cpp +++ b/muse2/muse/undo.cpp @@ -596,10 +596,10 @@ UndoOp::UndoOp(UndoType type_, int n, Track* track_) track = track_; } -UndoOp::UndoOp(UndoType type_, Part* part, unsigned old_len_or_tick, unsigned new_len_or_tick, bool, bool) +UndoOp::UndoOp(UndoType type_, Part* part_, unsigned old_len_or_tick, unsigned new_len_or_tick, bool, bool) { type = type_; - part = part; + part = part_; old_partlen_or_tick=old_len_or_tick; new_partlen_or_tick=new_len_or_tick; } |