diff options
author | Florian Jung <flo@windfisch.org> | 2011-12-30 18:51:46 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-12-30 18:51:46 +0000 |
commit | 14ed268100ece710a009c287fa4d61d7254f7aa1 (patch) | |
tree | 5b604a31789a2afdb34154c7c5340a8703d6e8ae /muse2/muse | |
parent | 30ce0c7640d9d7d8e409d485fe044426b33ea522 (diff) |
fixed gs.idf
Diffstat (limited to 'muse2/muse')
-rw-r--r-- | muse2/muse/midiedit/scoreedit.cpp | 4 | ||||
-rw-r--r-- | muse2/muse/xml.cpp | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/muse2/muse/midiedit/scoreedit.cpp b/muse2/muse/midiedit/scoreedit.cpp index 055134e2..45ccd4d6 100644 --- a/muse2/muse/midiedit/scoreedit.cpp +++ b/muse2/muse/midiedit/scoreedit.cpp @@ -4679,7 +4679,9 @@ void ScoreCanvas::add_new_parts(const std::map< MusECore::Part*, std::set<MusECo * from clipboard failed. ignoring this one... ) [ not reproducible ] * * CURRENT TODO - * o drum controllers + * o write instrument drummaps + * o GUI for editing instrument drummaps + * * drum controllers * update ctrlcanvas/panel * test! * * drum editor is buggy. propagate_drum_map may operate on old values diff --git a/muse2/muse/xml.cpp b/muse2/muse/xml.cpp index 45bed368..1a989366 100644 --- a/muse2/muse/xml.cpp +++ b/muse2/muse/xml.cpp @@ -225,7 +225,7 @@ Xml::Token Xml::parse() bool endFlag = false; nextc(); if (c == EOF) { - printf("unexpected EOF reading *.med file at level %d, line %d, <%s><%s><%s>\n", + printf("unexpected EOF reading xml file at level %d, line %d, <%s><%s><%s>\n", level, _line, _tag.toLatin1().constData(), _s1.toLatin1().constData(), _s2.toLatin1().constData()); return level == 0 ? End : Error; } |