aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2015-08-01 00:41:42 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2015-08-01 00:41:42 +0900
commit592e14f950e796abec72254dc2368b3dcd65178e (patch)
tree31b71c9e624d4fb42b2c3b774904fc34b4c684e3
parent2155b4fd50f035269733555951eb7a0cbe1b5a54 (diff)
TrueAudio: Remove unused formal parameters.
-rw-r--r--taglib/trueaudio/trueaudiofile.cpp34
-rw-r--r--taglib/trueaudio/trueaudiofile.h2
2 files changed, 18 insertions, 18 deletions
diff --git a/taglib/trueaudio/trueaudiofile.cpp b/taglib/trueaudio/trueaudiofile.cpp
index ec48aafe..8f40564c 100644
--- a/taglib/trueaudio/trueaudiofile.cpp
+++ b/taglib/trueaudio/trueaudiofile.cpp
@@ -84,38 +84,38 @@ public:
// public members
////////////////////////////////////////////////////////////////////////////////
-TrueAudio::File::File(FileName file, bool readProperties,
- Properties::ReadStyle propertiesStyle) : TagLib::File(file)
+TrueAudio::File::File(FileName file, bool readProperties, Properties::ReadStyle) :
+ TagLib::File(file),
+ d(new FilePrivate())
{
- d = new FilePrivate;
if(isOpen())
- read(readProperties, propertiesStyle);
+ read(readProperties);
}
TrueAudio::File::File(FileName file, ID3v2::FrameFactory *frameFactory,
- bool readProperties, Properties::ReadStyle propertiesStyle) :
- TagLib::File(file)
+ bool readProperties, Properties::ReadStyle) :
+ TagLib::File(file),
+ d(new FilePrivate(frameFactory))
{
- d = new FilePrivate(frameFactory);
if(isOpen())
- read(readProperties, propertiesStyle);
+ read(readProperties);
}
-TrueAudio::File::File(IOStream *stream, bool readProperties,
- Properties::ReadStyle propertiesStyle) : TagLib::File(stream)
+TrueAudio::File::File(IOStream *stream, bool readProperties, Properties::ReadStyle) :
+ TagLib::File(stream),
+ d(new FilePrivate())
{
- d = new FilePrivate;
if(isOpen())
- read(readProperties, propertiesStyle);
+ read(readProperties);
}
TrueAudio::File::File(IOStream *stream, ID3v2::FrameFactory *frameFactory,
- bool readProperties, Properties::ReadStyle propertiesStyle) :
- TagLib::File(stream)
+ bool readProperties, Properties::ReadStyle) :
+ TagLib::File(stream),
+ d(new FilePrivate(frameFactory))
{
- d = new FilePrivate(frameFactory);
if(isOpen())
- read(readProperties, propertiesStyle);
+ read(readProperties);
}
TrueAudio::File::~File()
@@ -250,7 +250,7 @@ bool TrueAudio::File::hasID3v2Tag() const
// private members
////////////////////////////////////////////////////////////////////////////////
-void TrueAudio::File::read(bool readProperties, Properties::ReadStyle /* propertiesStyle */)
+void TrueAudio::File::read(bool readProperties)
{
// Look for an ID3v2 tag
diff --git a/taglib/trueaudio/trueaudiofile.h b/taglib/trueaudio/trueaudiofile.h
index 36c85845..3fc515f6 100644
--- a/taglib/trueaudio/trueaudiofile.h
+++ b/taglib/trueaudio/trueaudiofile.h
@@ -239,7 +239,7 @@ namespace TagLib {
File(const File &);
File &operator=(const File &);
- void read(bool readProperties, Properties::ReadStyle propertiesStyle);
+ void read(bool readProperties);
long findID3v1();
long findID3v2();