aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/xm
diff options
context:
space:
mode:
authorUrs Fleisch <ufleisch@users.sourceforge.net>2021-01-02 10:49:29 +0100
committerUrs Fleisch <ufleisch@users.sourceforge.net>2021-01-02 10:50:52 +0100
commit59a2994f4ea0da52c2083231b1dd3ce4368cfa85 (patch)
tree89264c335c5b6fbe186e9582eab65fabfc607b85 /taglib/xm
parentf3bdd416dafb1ba401466fba380e980163a3036e (diff)
Fix spelling and typos
Diffstat (limited to 'taglib/xm')
-rw-r--r--taglib/xm/xmfile.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/taglib/xm/xmfile.cpp b/taglib/xm/xmfile.cpp
index e10e8f01..0455338d 100644
--- a/taglib/xm/xmfile.cpp
+++ b/taglib/xm/xmfile.cpp
@@ -566,7 +566,7 @@ void XM::File::read(bool)
seek(patternHeaderLength - (4 + count) + dataSize, Current);
}
- StringList intrumentNames;
+ StringList instrumentNames;
StringList sampleNames;
unsigned int sumSampleCount = 0;
@@ -630,12 +630,12 @@ void XM::File::read(bool)
else {
offset = instrumentHeaderSize - count;
}
- intrumentNames.append(instrumentName);
+ instrumentNames.append(instrumentName);
seek(offset, Current);
}
d->properties.setSampleCount(sumSampleCount);
- String comment(intrumentNames.toString("\n"));
+ String comment(instrumentNames.toString("\n"));
if(!sampleNames.isEmpty()) {
comment += "\n";
comment += sampleNames.toString("\n");