diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-15 13:51:03 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-18 11:57:08 +0100 |
commit | 234ed63451b934a683078404a1b895ee68875efb (patch) | |
tree | ea8eb6e5631955a8b46ac1f17069c448d4936bf5 /avmedia | |
parent | e9a201bacef56438111a2ad150325164ae71b573 (diff) |
loplugin:unnecessaryvirtual
Change-Id: Icf42fdd40a2cf6cda82254f81a7e389c7bac8558
Reviewed-on: https://gerrit.libreoffice.org/46683
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/vlc/inc/wrapper/Instance.hxx | 2 | ||||
-rw-r--r-- | avmedia/source/vlc/inc/wrapper/Media.hxx | 2 | ||||
-rw-r--r-- | avmedia/source/vlc/inc/wrapper/Player.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/avmedia/source/vlc/inc/wrapper/Instance.hxx b/avmedia/source/vlc/inc/wrapper/Instance.hxx index f2e8c9c8ef0e..e944fe423309 100644 --- a/avmedia/source/vlc/inc/wrapper/Instance.hxx +++ b/avmedia/source/vlc/inc/wrapper/Instance.hxx @@ -25,7 +25,7 @@ namespace wrapper Instance( int argc, const char * const argv[] ); Instance( const Instance& other ); Instance& operator=( const Instance& other ); - virtual ~Instance(); + ~Instance(); operator libvlc_instance_t*() { diff --git a/avmedia/source/vlc/inc/wrapper/Media.hxx b/avmedia/source/vlc/inc/wrapper/Media.hxx index 77d17118f2f7..d52bf8a6795a 100644 --- a/avmedia/source/vlc/inc/wrapper/Media.hxx +++ b/avmedia/source/vlc/inc/wrapper/Media.hxx @@ -31,7 +31,7 @@ namespace wrapper int getDuration() const; - virtual ~Media(); + ~Media(); operator libvlc_media_t*() { diff --git a/avmedia/source/vlc/inc/wrapper/Player.hxx b/avmedia/source/vlc/inc/wrapper/Player.hxx index 2e2921682260..4931f08ac312 100644 --- a/avmedia/source/vlc/inc/wrapper/Player.hxx +++ b/avmedia/source/vlc/inc/wrapper/Player.hxx @@ -34,7 +34,7 @@ namespace wrapper explicit Player( Media& media ); Player( const Player& other ); Player& operator=( const Player& other ); - virtual ~Player(); + ~Player(); bool play(); void pause(); |