From: Scott Wheeler Date: Wed, 23 Nov 2005 10:36:06 +0000 (+0000) Subject: Actually implement this constructor... X-Git-Tag: v1.5~251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=18d80d1ea010dc1e4ddc8aa10e93c1f454307613;p=taglib Actually implement this constructor... git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@482540 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- diff --git a/mpeg/id3v2/frames/relativevolumeframe.cpp b/mpeg/id3v2/frames/relativevolumeframe.cpp index 3b8caea9..78a34e96 100644 --- a/mpeg/id3v2/frames/relativevolumeframe.cpp +++ b/mpeg/id3v2/frames/relativevolumeframe.cpp @@ -52,6 +52,11 @@ public: // public members //////////////////////////////////////////////////////////////////////////////// +RelativeVolumeFrame::RelativeVolumeFrame() : Frame("RVA2") +{ + d = new RelativeVolumeFramePrivate; +} + RelativeVolumeFrame::RelativeVolumeFrame(const ByteVector &data) : Frame(data) { d = new RelativeVolumeFramePrivate;