npapi-vlc | branch: master | Ludovic Fauvet <[email protected]> | Wed Jan  2 
00:09:55 2013 +0100| [08dcda676c3307f80e9a16301a16ba7313c4d233] | committer: 
Jean-Baptiste Kempf

Add missing dtors

Close #7980

Signed-off-by: Jean-Baptiste Kempf <[email protected]>

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

_______________________________________________
vlc-commits mailing list
[email protected]
http://mailman.videolan.org/listinfo/vlc-commits

Reply via email to