These were missing private copy constructors / assignment operators to make them non-copyable.

git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@738702 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler
2007-11-19 13:59:33 +00:00
parent 438927762c
commit b2e2f0bdba
6 changed files with 52 additions and 34 deletions

View File

@ -79,6 +79,9 @@ namespace TagLib {
int ttaVersion() const;
private:
Properties(const Properties &);
Properties &operator=(const Properties &);
void read();
class PropertiesPrivate;