summaryrefslogtreecommitdiff
path: root/muse2/muse/songfile.cpp
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2011-10-14 11:58:47 +0000
committerFlorian Jung <flo@windfisch.org>2011-10-14 11:58:47 +0000
commit395eb053ed2cd2ba1a47bf3fe99fe65ace523cad (patch)
tree74281fc45c7661fe0ba5c3937aefe55d1511d739 /muse2/muse/songfile.cpp
parenta80e5947363ba5f3d77321dd72a4cd93c777998a (diff)
fixed dangling slot
Diffstat (limited to 'muse2/muse/songfile.cpp')
-rw-r--r--muse2/muse/songfile.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/muse2/muse/songfile.cpp b/muse2/muse/songfile.cpp
index 07b03c5e..033122d7 100644
--- a/muse2/muse/songfile.cpp
+++ b/muse2/muse/songfile.cpp
@@ -29,6 +29,7 @@
#include "app.h"
#include "song.h"
#include "arranger.h"
+#include "arrangerview.h"
//#include "arranger/arranger.h" // p4.0.2
#include "cobject.h"
#include "drumedit.h"
@@ -1296,7 +1297,7 @@ void MusE::readToplevels(MusECore::Xml& xml)
score->show();
toplevels.push_back(score);
connect(score, SIGNAL(deleted(MusEGui::TopWin*)), SLOT(toplevelDeleted(MusEGui::TopWin*)));
- connect(score, SIGNAL(name_changed()), SLOT(scoreNamingChanged()));
+ connect(score, SIGNAL(name_changed()), arrangerView, SLOT(scoreNamingChanged()));
score->readStatus(xml);
}
else if (tag == "drumedit") {