diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-17 08:22:48 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-07-17 09:26:05 +0200 |
commit | 0e0d8af4e4f697da76fa37a2533798d9dc55597c (patch) | |
tree | e41e54c3c667dad62eb963977cd1c55760268206 | |
parent | ef8f88a7df19559f6a748c3c1dad2b245d3d30d8 (diff) |
loplugin:unusedfields
Change-Id: I38abc54776cc605c76faf94e9e8c0f4fa75b8788
Reviewed-on: https://gerrit.libreoffice.org/75740
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | cui/source/options/optpath.cxx | 4 | ||||
-rw-r--r-- | sd/source/ui/inc/fusel.hxx | 1 | ||||
-rw-r--r-- | sfx2/source/dialog/basedlgs.cxx | 2 |
3 files changed, 0 insertions, 7 deletions
diff --git a/cui/source/options/optpath.cxx b/cui/source/options/optpath.cxx index 5a53d1fe5267..9a0cbb1f6ff3 100644 --- a/cui/source/options/optpath.cxx +++ b/cui/source/options/optpath.cxx @@ -90,14 +90,11 @@ struct OptPath_Impl } }; -// struct PathUserData_Impl ---------------------------------------------- - struct PathUserData_Impl { sal_uInt16 nRealId; SfxItemState eState; OUString sUserPath; - OUString sInternalPath; OUString sWritablePath; explicit PathUserData_Impl( sal_uInt16 nId ) : @@ -367,7 +364,6 @@ void SvxPathTabPage::Reset( const SfxItemSet* ) } PathUserData_Impl* pPathImpl = new PathUserData_Impl(i); pPathImpl->sUserPath = sUser; - pPathImpl->sInternalPath = sInternal; pPathImpl->sWritablePath = sWritable; pEntry->SetUserData( pPathImpl ); } diff --git a/sd/source/ui/inc/fusel.hxx b/sd/source/ui/inc/fusel.hxx index 6f48ed9a4860..852f70622b02 100644 --- a/sd/source/ui/inc/fusel.hxx +++ b/sd/source/ui/inc/fusel.hxx @@ -78,7 +78,6 @@ private: bool bSuppressChangesOfSelection; bool bMirrorSide0; sal_uInt16 nEditMode; - css::uno::Reference< css::media::XPlayer > mxPlayer; /** This pointer stores a candidate for assigning a style in the water can mode between mouse button down and mouse button up. diff --git a/sfx2/source/dialog/basedlgs.cxx b/sfx2/source/dialog/basedlgs.cxx index 4291b2000982..243da291d1da 100644 --- a/sfx2/source/dialog/basedlgs.cxx +++ b/sfx2/source/dialog/basedlgs.cxx @@ -49,7 +49,6 @@ class SfxModelessDialog_Impl : public SfxListener public: OString aWinState; SfxChildWindow* pMgr; - bool bConstructed; bool bClosing; void Notify( SfxBroadcaster& rBC, const SfxHint& rHint ) override; @@ -185,7 +184,6 @@ void SfxModelessDialogController::Init(SfxBindings *pBindinx, SfxChildWindow *pC m_pBindings = pBindinx; m_xImpl.reset(new SfxModelessDialog_Impl); m_xImpl->pMgr = pCW; - m_xImpl->bConstructed = true; m_xImpl->bClosing = false; if (pBindinx) m_xImpl->StartListening( *pBindinx ); |