mirror of
https://github.com/taglib/taglib.git
synced 2025-07-21 14:34:23 -04:00
- Disambiguate uint and ushort references
This commit is contained in:
@ -84,47 +84,47 @@ int XM::Properties::channels() const
|
||||
return d->channels;
|
||||
}
|
||||
|
||||
ushort XM::Properties::lengthInPatterns() const
|
||||
TagLib::ushort XM::Properties::lengthInPatterns() const
|
||||
{
|
||||
return d->lengthInPatterns;
|
||||
}
|
||||
|
||||
ushort XM::Properties::version() const
|
||||
TagLib::ushort XM::Properties::version() const
|
||||
{
|
||||
return d->version;
|
||||
}
|
||||
|
||||
ushort XM::Properties::restartPosition() const
|
||||
TagLib::ushort XM::Properties::restartPosition() const
|
||||
{
|
||||
return d->restartPosition;
|
||||
}
|
||||
|
||||
ushort XM::Properties::patternCount() const
|
||||
TagLib::ushort XM::Properties::patternCount() const
|
||||
{
|
||||
return d->patternCount;
|
||||
}
|
||||
|
||||
ushort XM::Properties::instrumentCount() const
|
||||
TagLib::ushort XM::Properties::instrumentCount() const
|
||||
{
|
||||
return d->instrumentCount;
|
||||
}
|
||||
|
||||
uint XM::Properties::sampleCount() const
|
||||
TagLib::uint XM::Properties::sampleCount() const
|
||||
{
|
||||
return d->sampleCount;
|
||||
}
|
||||
|
||||
ushort XM::Properties::flags() const
|
||||
TagLib::ushort XM::Properties::flags() const
|
||||
{
|
||||
return d->flags;
|
||||
}
|
||||
|
||||
ushort XM::Properties::tempo() const
|
||||
TagLib::ushort XM::Properties::tempo() const
|
||||
{
|
||||
return d->tempo;
|
||||
}
|
||||
|
||||
ushort XM::Properties::bpmSpeed() const
|
||||
TagLib::ushort XM::Properties::bpmSpeed() const
|
||||
{
|
||||
return d->bpmSpeed;
|
||||
}
|
||||
|
Reference in New Issue
Block a user