aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/xm/xmproperties.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/xm/xmproperties.cpp')
-rw-r--r--taglib/xm/xmproperties.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/taglib/xm/xmproperties.cpp b/taglib/xm/xmproperties.cpp
index c6b2b7f3..e0b489ac 100644
--- a/taglib/xm/xmproperties.cpp
+++ b/taglib/xm/xmproperties.cpp
@@ -28,7 +28,7 @@ class XM::Properties::PropertiesPrivate
{
public:
PropertiesPrivate() :
- tableLength(0),
+ lengthInPatterns(0),
channels(0),
version(0),
restartPosition(0),
@@ -41,7 +41,7 @@ public:
{
}
- ushort tableLength;
+ ushort lengthInPatterns;
int channels;
ushort version;
ushort restartPosition;
@@ -84,9 +84,9 @@ int XM::Properties::channels() const
return d->channels;
}
-ushort XM::Properties::tableLength() const
+ushort XM::Properties::lengthInPatterns() const
{
- return d->tableLength;
+ return d->lengthInPatterns;
}
ushort XM::Properties::version() const
@@ -129,9 +129,9 @@ ushort XM::Properties::bpmSpeed() const
return d->bpmSpeed;
}
-void XM::Properties::setTableLength(ushort tableLength)
+void XM::Properties::setLengthInPatterns(ushort lengthInPatterns)
{
- d->tableLength = tableLength;
+ d->lengthInPatterns = lengthInPatterns;
}
void XM::Properties::setChannels(int channels)