diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-17 13:16:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-17 13:10:42 +0000 |
commit | bb674aa5503ff40a5619d1fb4c9f310da5f5c983 (patch) | |
tree | e9b6d62f258cded0a5f207609a61157c8d0ef4c2 /sd/inc | |
parent | b79cf88a048e5d8c784c97d99155104aef3d5dca (diff) |
loplugin:unusedfields
Change-Id: Id2dbbf384637223db3d334d95332251832918003
Reviewed-on: https://gerrit.libreoffice.org/30927
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/inc')
-rw-r--r-- | sd/inc/cusshow.hxx | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/sd/inc/cusshow.hxx b/sd/inc/cusshow.hxx index d0509ad04881..a4ab36d38f52 100644 --- a/sd/inc/cusshow.hxx +++ b/sd/inc/cusshow.hxx @@ -33,19 +33,15 @@ public: typedef ::std::vector<const SdPage*> PageVec; private: - PageVec maPages; + PageVec maPages; OUString aName; - SdDrawDocument* pDoc; // this is a weak reference to a possible living api wrapper for this custom show css::uno::WeakReference< css::uno::XInterface > mxUnoCustomShow; - SdCustomShow() = delete; - public: - // single argument ctors shall be explicit - explicit SdCustomShow(SdDrawDocument* pDrawDoc); - SdCustomShow(SdDrawDocument* pDrawDoc, css::uno::Reference< css::uno::XInterface > const & xShow ); + SdCustomShow(); + SdCustomShow(css::uno::Reference< css::uno::XInterface > const & xShow ); ~SdCustomShow(); |