summaryrefslogtreecommitdiff
path: root/muse2/muse/structure.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-08-31 17:04:21 +0000
committerFlorian Jung <flo@windfisch.org>2011-08-31 17:04:21 +0000
commitde47ea9a35af067cd3602f375174beb9a616c062 (patch)
tree03a077e3aa6abb54c0280df69518d118cf0e65e0 /muse2/muse/structure.cpp
parenta7fba3acdfaa382effcc02633708d7cf5a7ec2a4 (diff)
added "copy in range" function
when pasting, the previously selected parts are now unselected removed the structure operations "copy range" and "cut event", which were unimplemented
Diffstat (limited to 'muse2/muse/structure.cpp')
-rw-r--r--muse2/muse/structure.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/muse2/muse/structure.cpp b/muse2/muse/structure.cpp
index 9cdf68aa..53180ddd 100644
--- a/muse2/muse/structure.cpp
+++ b/muse2/muse/structure.cpp
@@ -313,28 +313,3 @@ void globalSplit()
song->applyOperationGroup(operations);
}
-//---------------------------------------------------------
-// copyRange
-// - copy space between left and right locator position
-// to song position pointer
-// - dont process muted tracks
-// - create a new part for every track containing the
-// copied events
-//---------------------------------------------------------
-
-void copyRange()
- {
- QMessageBox::critical(muse, "Copy Range", "not implemented");
- }
-
-//---------------------------------------------------------
-// cutEvents
-// - make sure that all events in a part end where the
-// part ends
-// - process only marked parts
-//---------------------------------------------------------
-
-void cutEvents()
- {
- QMessageBox::critical(muse, "Cut Events", "not implemented");
- }