diff options
author | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-08 00:22:51 +0000 |
---|---|---|
committer | Orcan Ogetbil <oget.fedora@gmail.com> | 2010-12-08 00:22:51 +0000 |
commit | f681783c513b54002aa4dfec2566f26bfc38689b (patch) | |
tree | 1aad8f37fd067cd36b2d4de1ae3b62b584914b20 /muse2/muse/midievent.cpp | |
parent | c856c3c44f488b137dd3b76f81b2d4b9c5444b73 (diff) |
Some fixes to the previous commit. Apparently I missed to filter a case.
Diffstat (limited to 'muse2/muse/midievent.cpp')
-rw-r--r-- | muse2/muse/midievent.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/muse2/muse/midievent.cpp b/muse2/muse/midievent.cpp index 861a17f0..ffeca3ff 100644 --- a/muse2/muse/midievent.cpp +++ b/muse2/muse/midievent.cpp @@ -137,7 +137,8 @@ void MidiEventBase::read(Xml& xml) break; case Xml::Text: { - const char*s = tag.toLatin1(); + QByteArray ba = tag.toLatin1(); + const char*s = ba.constData(); edata.data = new unsigned char[dataLen]; edata.dataLen = dataLen; unsigned char* d = edata.data; |