Merge remote-tracking branch 'gperks/master'

Conflicts:
	taglib/asf/asfpicture.cpp
	taglib/it/itproperties.h
This commit is contained in:
Lukáš Lalinský
2011-07-28 19:03:46 +02:00
8 changed files with 33 additions and 9 deletions

View File

@ -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;
}

View File

@ -208,8 +208,8 @@ namespace TagLib
friend class Attribute;
#endif
private:
struct PicturePriavte;
PicturePriavte *d;
class PicturePrivate;
PicturePrivate *d;
};
}
}

View File

@ -41,7 +41,6 @@ namespace TagLib {
uint instrumentCount() const;
uchar lengthInPatterns() const;
protected:
void setChannels(int channels);
void setInstrumentCount(uint sampleCount);

View File

@ -61,7 +61,6 @@ namespace TagLib {
uchar tempo() const;
uchar bpmSpeed() const;
protected:
void setChannels(int channels);
void setLengthInPatterns (ushort lengthInPatterns);

View File

@ -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

View File

@ -54,7 +54,6 @@ namespace TagLib {
ushort tempo() const;
ushort bpmSpeed() const;
protected:
void setChannels(int channels);
void setLengthInPatterns(ushort lengthInPatterns);