summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2013-08-11 18:20:33 +0200
committerFlorian Jung <flo@windfisch.org>2013-08-11 18:20:33 +0200
commit51435dcddf4cd752ff6200fd28c220ffc7b60743 (patch)
tree46a3a4ea0c0ce0b63b04d510ba875a107339be7d
parentcf5765018e4b742bbf490cf9fd57757bfb921f83 (diff)
typo
-rw-r--r--muse2/muse/undo.cpp4
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;
}