diff --git a/mpeg/id3v2/frames/textidentificationframe.cpp b/mpeg/id3v2/frames/textidentificationframe.cpp index 0d696861..3d158297 100644 --- a/mpeg/id3v2/frames/textidentificationframe.cpp +++ b/mpeg/id3v2/frames/textidentificationframe.cpp @@ -38,15 +38,15 @@ public: // public members //////////////////////////////////////////////////////////////////////////////// -TextIdentificationFrame::TextIdentificationFrame(const ByteVector &type, String::Type encoding) - : Frame(type) +TextIdentificationFrame::TextIdentificationFrame(const ByteVector &type, String::Type encoding) : + Frame(type) { d = new TextIdentificationFramePrivate; d->textEncoding = encoding; } -TextIdentificationFrame::TextIdentificationFrame(const ByteVector &data) - : Frame(data) +TextIdentificationFrame::TextIdentificationFrame(const ByteVector &data) : + Frame(data) { d = new TextIdentificationFramePrivate; setData(data);