diff options
author | Florian Jung <flo@windfisch.org> | 2011-07-28 17:20:06 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-07-28 17:20:06 +0000 |
commit | d8b982306e85b2a29f793d50cab2a424c1715c0d (patch) | |
tree | 389dbe1037fdb0f2639e5610f3d6c394ed8c9233 /muse2/muse/arranger/pcanvas.cpp | |
parent | 7193ff9d74fe76737d28ba77bf3dcadac19d2895 (diff) | |
parent | 346fbb6c864890959ac2e3a7f4549d6bb202373e (diff) |
merged with trunk
Diffstat (limited to 'muse2/muse/arranger/pcanvas.cpp')
-rw-r--r-- | muse2/muse/arranger/pcanvas.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/muse2/muse/arranger/pcanvas.cpp b/muse2/muse/arranger/pcanvas.cpp index edf60802..7298194c 100644 --- a/muse2/muse/arranger/pcanvas.cpp +++ b/muse2/muse/arranger/pcanvas.cpp @@ -374,13 +374,13 @@ UndoOp PartCanvas::moveItem(CItem* item, const QPoint& newpos, DragType t) if (t == MOVE_COPY || t == MOVE_CLONE) { // These will not increment ref count, and will not chain clones... - // TODO: is this still correct (by flo93)? + // TODO FINDMICH: is this still correct (by flo93)? i doubt it! result=UndoOp(UndoOp::AddPart,dpart); } else if (t == MOVE_MOVE) { dpart->setSelected(spart->selected()); // These will increment ref count if not a clone, and will chain clones... - // TODO: is this still correct (by flo93)? + // TODO FINDMICH: is this still correct (by flo93)? i doubt it! result=UndoOp(UndoOp::ModifyPart,spart, dpart, true, false); spart->setSelected(false); |