From: Scott Wheeler Date: Wed, 28 Apr 2004 00:23:52 +0000 (+0000) Subject: Oops, the implementation of this constructor was missing. X-Git-Tag: v1.5~397 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e15659dbfc28b6974027ab1dd9e2b31c349039c;p=taglib Oops, the implementation of this constructor was missing. git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@306914 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- diff --git a/mpeg/id3v2/frames/attachedpictureframe.cpp b/mpeg/id3v2/frames/attachedpictureframe.cpp index 565c435a..35a6a7ef 100644 --- a/mpeg/id3v2/frames/attachedpictureframe.cpp +++ b/mpeg/id3v2/frames/attachedpictureframe.cpp @@ -43,6 +43,11 @@ public: // public members //////////////////////////////////////////////////////////////////////////////// +AttachedPictureFrame::AttachedPictureFrame() : Frame("APIC") +{ + d = new AttachedPictureFramePrivate; +} + AttachedPictureFrame::AttachedPictureFrame(const ByteVector &data) : Frame(data) { setData(data);