summaryrefslogtreecommitdiff
path: root/cui/source/inc/cfgutil.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-22 14:20:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-23 09:01:00 +0200
commit75ddf3a22aa83d1b067085bd7132acab5a088856 (patch)
treef7b9c3c0a8ab9eab7ac768236c4de3c463e9dc67 /cui/source/inc/cfgutil.hxx
parent55ff9d3e2d160132f905b8c932b622c0c8575478 (diff)
loplugin:unusedfields in cui
Change-Id: I6d3ef43ab915d65794f1052f1f184eda10d39e1a Reviewed-on: https://gerrit.libreoffice.org/39136 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/inc/cfgutil.hxx')
-rw-r--r--cui/source/inc/cfgutil.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/cui/source/inc/cfgutil.hxx b/cui/source/inc/cfgutil.hxx
index d409054acd92..e7af1f258d1a 100644
--- a/cui/source/inc/cfgutil.hxx
+++ b/cui/source/inc/cfgutil.hxx
@@ -93,13 +93,12 @@ struct SfxGroupInfo_Impl
SfxCfgKind nKind;
sal_uInt16 nUniqueID;
void* pObject;
- bool bWasOpened;
OUString sCommand;
OUString sLabel;
OUString sHelpText;
SfxGroupInfo_Impl( SfxCfgKind n, sal_uInt16 nr, void* pObj = nullptr ) :
- nKind( n ), nUniqueID( nr ), pObject( pObj ), bWasOpened(false) {}
+ nKind( n ), nUniqueID( nr ), pObject( pObj ) {}
};
typedef std::vector<std::unique_ptr<SfxGroupInfo_Impl> > SfxGroupInfoArr_Impl;
@@ -108,7 +107,6 @@ class SfxConfigFunctionListBox : public SvTreeListBox
{
friend class SfxConfigGroupListBox;
SfxGroupInfoArr_Impl aArr;
- SfxStylesInfo_Impl* pStylesInfo;
virtual void MouseMove( const MouseEvent& rMEvt ) override;
@@ -123,7 +121,6 @@ public:
OUString GetCurLabel();
OUString GetSelectedScriptURI();
OUString GetHelpText();
- void SetStylesInfo(SfxStylesInfo_Impl* pStyles);
};
struct SvxConfigGroupBoxResource_Impl;