mirror of
https://github.com/taglib/taglib.git
synced 2025-07-26 00:44:31 -04:00
Merge remote-tracking branch 'gperks/master'
Conflicts: taglib/asf/asfpicture.cpp taglib/it/itproperties.h
This commit is contained in:
@ -35,8 +35,9 @@
|
||||
|
||||
using namespace TagLib;
|
||||
|
||||
struct ASF::Picture::PicturePriavte : public RefCounter
|
||||
class ASF::Picture::PicturePrivate : public RefCounter
|
||||
{
|
||||
public:
|
||||
bool valid;
|
||||
Type type;
|
||||
String mimeType;
|
||||
@ -50,7 +51,7 @@ struct ASF::Picture::PicturePriavte : public RefCounter
|
||||
|
||||
ASF::Picture::Picture()
|
||||
{
|
||||
d = new PicturePriavte();
|
||||
d = new PicturePrivate();
|
||||
d->valid = true;
|
||||
}
|
||||
|
||||
|
@ -208,8 +208,8 @@ namespace TagLib
|
||||
friend class Attribute;
|
||||
#endif
|
||||
private:
|
||||
struct PicturePriavte;
|
||||
PicturePriavte *d;
|
||||
class PicturePrivate;
|
||||
PicturePrivate *d;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
@ -41,7 +41,6 @@ namespace TagLib {
|
||||
uint instrumentCount() const;
|
||||
uchar lengthInPatterns() const;
|
||||
|
||||
protected:
|
||||
void setChannels(int channels);
|
||||
|
||||
void setInstrumentCount(uint sampleCount);
|
||||
|
@ -61,7 +61,6 @@ namespace TagLib {
|
||||
uchar tempo() const;
|
||||
uchar bpmSpeed() const;
|
||||
|
||||
protected:
|
||||
void setChannels(int channels);
|
||||
|
||||
void setLengthInPatterns (ushort lengthInPatterns);
|
||||
|
@ -65,7 +65,7 @@
|
||||
|
||||
/*!
|
||||
* This namespace contains everything in TagLib. For projects working with
|
||||
* TagLib extensively it may be conveniten to add a
|
||||
* TagLib extensively it may be convenient to add a
|
||||
* \code
|
||||
* using namespace TagLib;
|
||||
* \endcode
|
||||
|
@ -54,7 +54,6 @@ namespace TagLib {
|
||||
ushort tempo() const;
|
||||
ushort bpmSpeed() const;
|
||||
|
||||
protected:
|
||||
void setChannels(int channels);
|
||||
|
||||
void setLengthInPatterns(ushort lengthInPatterns);
|
||||
|
Reference in New Issue
Block a user