diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-07 15:29:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-11-10 07:45:39 +0100 |
commit | 19ee7861938b59085a50699a51e2f149e49a24e4 (patch) | |
tree | 7d784dd4a3e10da8846313ca6a54ee0b2292e759 /avmedia | |
parent | 049e026755f7c36c7594bf4e7891603930669a54 (diff) |
loplugin:finalclasses in accessibility
Change-Id: I9d8bc018dfe8bd8668d28daccd85ea5770fe31b0
Reviewed-on: https://gerrit.libreoffice.org/44537
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'avmedia')
-rw-r--r-- | avmedia/source/gstreamer/gstplayer.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/avmedia/source/gstreamer/gstplayer.hxx b/avmedia/source/gstreamer/gstplayer.hxx index 58f4a02eb100..1af1ae8eb9bf 100644 --- a/avmedia/source/gstreamer/gstplayer.hxx +++ b/avmedia/source/gstreamer/gstplayer.hxx @@ -39,7 +39,7 @@ namespace avmedia { namespace gstreamer { typedef ::cppu::WeakComponentImplHelper< css::media::XPlayer, css::lang::XServiceInfo > GstPlayer_BASE; -class Player : public ::cppu::BaseMutex, +class Player final : public ::cppu::BaseMutex, public GstPlayer_BASE { public: @@ -77,7 +77,7 @@ public: // ::cppu::OComponentHelper virtual void SAL_CALL disposing() final override; -protected: +private: OUString maURL; // Add elements and pipeline here |