[vlc-commits] Add missing dtors
Ludovic Fauvet
git at videolan.org
Wed Jan 2 00:13:57 CET 2013
npapi-vlc | branch: master | Ludovic Fauvet <etix at videolan.org> | Wed Jan 2 00:09:55 2013 +0100| [08dcda676c3307f80e9a16301a16ba7313c4d233] | committer: Jean-Baptiste Kempf
Add missing dtors
Close #7980
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/npapi-vlc.git/?a=commit;h=08dcda676c3307f80e9a16301a16ba7313c4d233
---
activex/vlccontrol2.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/activex/vlccontrol2.h b/activex/vlccontrol2.h
index b285b4d..6357268 100644
--- a/activex/vlccontrol2.h
+++ b/activex/vlccontrol2.h
@@ -170,6 +170,7 @@ class VLCMarquee: public VLCInterface<VLCMarquee,IVLCMarquee>
{
public:
VLCMarquee(VLCPlugin *p): VLCInterface<VLCMarquee,IVLCMarquee>(p) { }
+ virtual ~VLCMarquee() { }
// IVLCMarquee methods
STDMETHODIMP enable() { return do_put_int(libvlc_marquee_Enable, true); }
@@ -203,6 +204,7 @@ class VLCLogo: public VLCInterface<VLCLogo,IVLCLogo>
{
public:
VLCLogo(VLCPlugin *p): VLCInterface<VLCLogo,IVLCLogo>(p) { }
+ virtual ~VLCLogo() { }
STDMETHODIMP enable() { return do_put_int(libvlc_logo_enable, true); }
STDMETHODIMP disable() { return do_put_int(libvlc_logo_enable, false); }
@@ -236,6 +238,7 @@ class VLCDeinterlace: public VLCInterface<VLCDeinterlace,IVLCDeinterlace>
public:
VLCDeinterlace(VLCPlugin *p):
VLCInterface<VLCDeinterlace,IVLCDeinterlace>(p) { }
+ virtual ~VLCDeinterlace() { }
STDMETHODIMP enable(BSTR val);
STDMETHODIMP disable();
More information about the vlc-commits
mailing list