]> granicus.if.org Git - taglib/commitdiff
Changed the style to follow TagLib's one
authorTsuda Kageyu <tsuda.kageyu@gmail.com>
Sat, 22 Jun 2013 09:06:40 +0000 (18:06 +0900)
committerTsuda Kageyu <tsuda.kageyu@gmail.com>
Sat, 22 Jun 2013 09:06:40 +0000 (18:06 +0900)
taglib/ogg/opus/opusfile.cpp

index 91ec5a09c5a02b2bf8ffeb40cdf68a9871f814bc..cb81a32b02a674b6b52e00e0319dfca5994fed37 100644 (file)
@@ -59,17 +59,17 @@ public:
 // public members
 ////////////////////////////////////////////////////////////////////////////////
 
-Opus::File::File(FileName file, bool readProperties, Properties::ReadStyle propertiesStyle) 
-  : Ogg::File(file)
-  d(new FilePrivate())
+Opus::File::File(FileName file, bool readProperties, Properties::ReadStyle propertiesStyle) :
+  Ogg::File(file),
+  d(new FilePrivate())
 {
   if(isOpen())
     read(readProperties, propertiesStyle);
 }
 
-Opus::File::File(IOStream *stream, bool readProperties, Properties::ReadStyle propertiesStyle) 
-  : Ogg::File(stream)
-  d(new FilePrivate())
+Opus::File::File(IOStream *stream, bool readProperties, Properties::ReadStyle propertiesStyle) :
+  Ogg::File(stream),
+  d(new FilePrivate())
 {
   if(isOpen())
     read(readProperties, propertiesStyle);