diff options
author | Florian Jung <flo@windfisch.org> | 2013-08-11 18:20:33 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2013-08-11 18:20:33 +0200 |
commit | 51435dcddf4cd752ff6200fd28c220ffc7b60743 (patch) | |
tree | 46a3a4ea0c0ce0b63b04d510ba875a107339be7d /muse2 | |
parent | cf5765018e4b742bbf490cf9fd57757bfb921f83 (diff) |
typo
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; } |