mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Fix for VS2010 which had been throwing out "cannot access protected member declared in class 'TagLib::Mod::Properties'" errors.
This commit is contained in:
parent
0341079b92
commit
8b647e5fa7
@ -72,7 +72,10 @@ namespace TagLib {
|
||||
uchar panningSeparation() const;
|
||||
uchar pitchWheelDepth() const;
|
||||
|
||||
#if !defined(_MSC_VER)
|
||||
protected:
|
||||
#endif
|
||||
|
||||
void setChannels(int channels);
|
||||
|
||||
void setLengthInPatterns(ushort lengthInPatterns);
|
||||
|
@ -41,7 +41,9 @@ namespace TagLib {
|
||||
uint instrumentCount() const;
|
||||
uchar lengthInPatterns() const;
|
||||
|
||||
#if !defined(_MSC_VER)
|
||||
protected:
|
||||
#endif
|
||||
void setChannels(int channels);
|
||||
|
||||
void setInstrumentCount(uint sampleCount);
|
||||
|
@ -61,7 +61,9 @@ namespace TagLib {
|
||||
uchar tempo() const;
|
||||
uchar bpmSpeed() const;
|
||||
|
||||
#if !defined(_MSC_VER)
|
||||
protected:
|
||||
#endif
|
||||
void setChannels(int channels);
|
||||
|
||||
void setLengthInPatterns (ushort lengthInPatterns);
|
||||
|
@ -54,7 +54,9 @@ namespace TagLib {
|
||||
ushort tempo() const;
|
||||
ushort bpmSpeed() const;
|
||||
|
||||
#if !defined(_MSC_VER)
|
||||
protected:
|
||||
#endif
|
||||
void setChannels(int channels);
|
||||
|
||||
void setLengthInPatterns(ushort lengthInPatterns);
|
||||
|
Loading…
x
Reference in New Issue
Block a user