summaryrefslogtreecommitdiff
path: root/muse2/muse/midievent.cpp
diff options
context:
space:
mode:
authorOrcan Ogetbil <oget.fedora@gmail.com>2010-12-07 23:40:10 +0000
committerOrcan Ogetbil <oget.fedora@gmail.com>2010-12-07 23:40:10 +0000
commitc856c3c44f488b137dd3b76f81b2d4b9c5444b73 (patch)
tree88a64ae28e48d4f71396d329b0d1c797b31accc3 /muse2/muse/midievent.cpp
parent1e2c10156202d4b50df409a1930adc3f151e44dc (diff)
Converted all latin1() instances. Ported Qt3 methods to Qt4.
Diffstat (limited to 'muse2/muse/midievent.cpp')
-rw-r--r--muse2/muse/midievent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/midievent.cpp b/muse2/muse/midievent.cpp
index 8f2b0756..861a17f0 100644
--- a/muse2/muse/midievent.cpp
+++ b/muse2/muse/midievent.cpp
@@ -137,7 +137,7 @@ void MidiEventBase::read(Xml& xml)
break;
case Xml::Text:
{
- const char*s = tag.latin1();
+ const char*s = tag.toLatin1();
edata.data = new unsigned char[dataLen];
edata.dataLen = dataLen;
unsigned char* d = edata.data;