Misc typo corrections

This commit is contained in:
Graham Perks 2011-07-26 21:35:44 -05:00 committed by Graham Perks
parent 1a53bfd71a
commit 0341079b92
3 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@
using namespace TagLib;
class ASF::Picture::PicturePriavte : public RefCounter
class ASF::Picture::PicturePrivate : public RefCounter
{
public:
bool valid;
@ -51,7 +51,7 @@ public:
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

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