summaryrefslogtreecommitdiff
path: root/muse2/muse/undo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'muse2/muse/undo.cpp')
-rw-r--r--muse2/muse/undo.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/muse2/muse/undo.cpp b/muse2/muse/undo.cpp
index eccb4690..5081f86c 100644
--- a/muse2/muse/undo.cpp
+++ b/muse2/muse/undo.cpp
@@ -577,11 +577,6 @@ UndoOp::UndoOp()
type=UndoOp::DoNothing;
}
-UndoOp::UndoOp(UndoType type_)
-{
- type = type_;
-}
-
UndoOp::UndoOp(UndoType type_, int a_, int b_, int c_)
{
assert(type_==AddKey || type_==DeleteKey ||
@@ -642,16 +637,6 @@ UndoOp::UndoOp(UndoType type_, Event& nev, Part* part_, bool doCtrls_, bool doCl
doClones = doClones_;
}
-UndoOp::UndoOp(UndoType type_, int c, int ctrl_, int ov, int nv)
- {
- assert(false); // DELETETHIS whole ctor.
-
- type = type_;
- channel = c;
- ctrl = ctrl_;
- oVal = ov;
- nVal = nv;
- }
UndoOp::UndoOp(UndoType type_, Marker* copyMarker_, Marker* realMarker_)
{