From 9e15659dbfc28b6974027ab1dd9e2b31c349039c Mon Sep 17 00:00:00 2001 From: Scott Wheeler Date: Wed, 28 Apr 2004 00:23:52 +0000 Subject: [PATCH] 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 --- mpeg/id3v2/frames/attachedpictureframe.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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); -- 2.50.1