diff options
author | Noel Grandin <noel@peralex.com> | 2015-12-22 16:23:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-12-23 08:13:54 +0200 |
commit | 4012390e0549e8cdc48e566608cad2c36e2df44e (patch) | |
tree | 83982483d2a0a0e58c2f9339a76e216099595e84 /cui/source/inc | |
parent | a008a234252d94b0f644d020ea75ade551fbc01a (diff) |
loplugin:unusedfields in cui
Change-Id: I7a1092708881d1d43debf0217a5401c5b65838a5
Diffstat (limited to 'cui/source/inc')
-rw-r--r-- | cui/source/inc/border.hxx | 2 | ||||
-rw-r--r-- | cui/source/inc/cfg.hxx | 5 | ||||
-rw-r--r-- | cui/source/inc/insdlg.hxx | 3 | ||||
-rw-r--r-- | cui/source/inc/optdict.hxx | 13 |
4 files changed, 2 insertions, 21 deletions
diff --git a/cui/source/inc/border.hxx b/cui/source/inc/border.hxx index ba780e1aa41a..e96ab2caad4d 100644 --- a/cui/source/inc/border.hxx +++ b/cui/source/inc/border.hxx @@ -100,9 +100,7 @@ private: VclPtr<CheckBox> m_pMergeAdjacentBordersCB; VclPtr<CheckBox> m_pRemoveAdjcentCellBordersCB; - ImageList aShadowImgLstH; ImageList aShadowImgLst; - ImageList aBorderImgLstH; ImageList aBorderImgLst; long nMinValue; ///< minimum distance diff --git a/cui/source/inc/cfg.hxx b/cui/source/inc/cfg.hxx index f719758e6630..a77cbeb11259 100644 --- a/cui/source/inc/cfg.hxx +++ b/cui/source/inc/cfg.hxx @@ -668,11 +668,6 @@ public: } }; -struct SvxIconSelectorToolBoxItem -{ - Image aImg; -}; - class SvxIconSelectorDialog : public ModalDialog { private: diff --git a/cui/source/inc/insdlg.hxx b/cui/source/inc/insdlg.hxx index 1b684439fc7e..436669dfa80a 100644 --- a/cui/source/inc/insdlg.hxx +++ b/cui/source/inc/insdlg.hxx @@ -98,10 +98,7 @@ class SvInsertPlugInDialog : public InsertObjectDialog_Impl { private: VclPtr<Edit> m_pEdFileurl; - VclPtr<PushButton> m_pBtnFileurl; VclPtr<VclMultiLineEdit> m_pEdPluginsOptions; - INetURLObject* m_pURL; - OUString m_aCommands; DECL_LINK_TYPED(BrowseHdl, Button*, void); diff --git a/cui/source/inc/optdict.hxx b/cui/source/inc/optdict.hxx index 7f4d665e0d83..5f97eb9e8fe9 100644 --- a/cui/source/inc/optdict.hxx +++ b/cui/source/inc/optdict.hxx @@ -55,17 +55,13 @@ private: VclPtr<CheckBox> pExceptBtn; VclPtr<OKButton> pOKBtn; css::uno::Reference< - css::linguistic2::XSpellChecker1 > xSpell; - css::uno::Reference< css::linguistic2::XDictionary > xNewDic; DECL_LINK_TYPED(OKHdl_Impl, Button*, void); DECL_LINK_TYPED(ModifyHdl_Impl, Edit&, void); public: - SvxNewDictionaryDialog( vcl::Window* pParent, - css::uno::Reference< - css::linguistic2::XSpellChecker1 > &xSpl ); + SvxNewDictionaryDialog( vcl::Window* pParent ); virtual ~SvxNewDictionaryDialog(); virtual void dispose() override; @@ -115,13 +111,10 @@ private: OUString sModify; OUString sNew; - DecorationView aDecoView; css::uno::Sequence< css::uno::Reference< css::linguistic2::XDictionary > > aDics; //! snapshot copy to work on - css::uno::Reference< - css::linguistic2::XSpellChecker1 > xSpell; short nOld; long nWidth; @@ -149,9 +142,7 @@ private: public: SvxEditDictionaryDialog( vcl::Window* pParent, - const OUString& rName, - css::uno::Reference< - css::linguistic2::XSpellChecker1> &xSpl ); + const OUString& rName ); virtual ~SvxEditDictionaryDialog(); virtual void dispose() override; }; |