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);