From: Tsuda Kageyu Date: Sat, 22 Jun 2013 09:06:40 +0000 (+0900) Subject: Changed the style to follow TagLib's one X-Git-Tag: v1.9~12^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab417fd9e3a481ad76caaa1d5205af928ce73772;p=taglib Changed the style to follow TagLib's one --- diff --git a/taglib/ogg/opus/opusfile.cpp b/taglib/ogg/opus/opusfile.cpp index 91ec5a09..cb81a32b 100644 --- a/taglib/ogg/opus/opusfile.cpp +++ b/taglib/ogg/opus/opusfile.cpp @@ -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);