diff options
author | Florian Jung <flo@windfisch.org> | 2011-04-24 12:39:59 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-04-24 12:39:59 +0000 |
commit | 57ffdd0790adc1460ea60310f1a3698e51b0248b (patch) | |
tree | 66bdf6e508d73932f303b23c6dacd0b6a00c9051 /muse2/muse/app.cpp | |
parent | cf6951a578be0e6c5d4b550a3f2f294c33f27548 (diff) | |
parent | efac864c25429cdb853fba82484606f94fb6d4ec (diff) |
ScoreEdit doesn't inherit from MidiEditor any more, which solves
all that partlist-stuff
merged with trunk
Diffstat (limited to 'muse2/muse/app.cpp')
-rw-r--r-- | muse2/muse/app.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/app.cpp b/muse2/muse/app.cpp index efa6b86d..9bbe8736 100644 --- a/muse2/muse/app.cpp +++ b/muse2/muse/app.cpp @@ -3521,7 +3521,7 @@ void MusE::openInScoreEdit(ScoreEdit* destination, PartList* pl, bool allInOne) { if (destination==NULL) // if no destination given, create a new one { - destination = new ScoreEdit(pl, this, 0, arranger->cursorValue()); + destination = new ScoreEdit(this, 0, arranger->cursorValue()); destination->show(); toplevels.push_back(Toplevel(Toplevel::SCORE, (unsigned long)(destination), destination)); connect(destination, SIGNAL(deleted(unsigned long)), SLOT(toplevelDeleted(unsigned long))); |