From 067dc81f93dee764068544c279413f87a8e88b66 Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Tue, 30 Mar 2004 13:45:24 +0000 Subject: [PATCH] CVS_SILENT another nitpick git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@299843 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- mpeg/id3v2/frames/textidentificationframe.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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);