summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-11-23 13:11:05 +0200
committerNoel Grandin <noel@peralex.com>2015-11-23 13:30:54 +0200
commite2c03fde5807b9a3a57321ff9396c3dd76ab4dcf (patch)
tree7fd8b506e8a4606906fb107b63610e6cfe2e8afc /svtools
parent32303d062058f937b69ffffe753e4fc24e2f436b (diff)
loplugin:unusedfields svtools/
Change-Id: Ibab9bab1e36dd6bb938c2977d143d40a287bf4ab
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/contnr/contentenumeration.hxx13
-rw-r--r--svtools/source/control/valueacc.cxx1
-rw-r--r--svtools/source/control/valueimp.hxx1
-rw-r--r--svtools/source/toolpanel/tablayouter.cxx2
4 files changed, 6 insertions, 11 deletions
diff --git a/svtools/source/contnr/contentenumeration.hxx b/svtools/source/contnr/contentenumeration.hxx
index 8c63ef96e9b3..4484482e09e2 100644
--- a/svtools/source/contnr/contentenumeration.hxx
+++ b/svtools/source/contnr/contentenumeration.hxx
@@ -39,16 +39,15 @@ namespace svt
struct SortingData_Impl
{
private:
- OUString maFilename; // only filename in upper case - for compare purposes
- OUString maTitle; // -> be careful when changing maTitle to update maFilename only when new
- OUString maLowerTitle;
+ OUString maFilename; // only filename in upper case - for compare purposes
+ OUString maTitle; // -> be careful when changing maTitle to update maFilename only when new
+ OUString maLowerTitle;
public:
- OUString maType;
- OUString maTargetURL;
- OUString maImageURL;
- OUString maDisplayText;
+ OUString maType;
+ OUString maTargetURL;
+ OUString maDisplayText;
DateTime maModDate;
Image maImage;
sal_Int64 maSize;
diff --git a/svtools/source/control/valueacc.cxx b/svtools/source/control/valueacc.cxx
index 24c3b27edef4..66548367d96c 100644
--- a/svtools/source/control/valueacc.cxx
+++ b/svtools/source/control/valueacc.cxx
@@ -41,7 +41,6 @@ ValueSetItem::ValueSetItem( ValueSet& rParent )
, meType(VALUESETITEM_NONE)
, mbVisible(true)
, mpData(nullptr)
- , mbSelected(false)
, mxAcc()
{
}
diff --git a/svtools/source/control/valueimp.hxx b/svtools/source/control/valueimp.hxx
index 93c1ae4e9069..5599c770a070 100644
--- a/svtools/source/control/valueimp.hxx
+++ b/svtools/source/control/valueimp.hxx
@@ -59,7 +59,6 @@ struct ValueSetItem
Color maColor;
OUString maText;
void* mpData;
- bool mbSelected;
css::uno::Reference< css::accessibility::XAccessible > mxAcc;
explicit ValueSetItem( ValueSet& rParent );
diff --git a/svtools/source/toolpanel/tablayouter.cxx b/svtools/source/toolpanel/tablayouter.cxx
index 9c1a8661d71b..6a4e4749b23c 100644
--- a/svtools/source/toolpanel/tablayouter.cxx
+++ b/svtools/source/toolpanel/tablayouter.cxx
@@ -40,14 +40,12 @@ namespace svt
struct TabDeckLayouter_Data
{
TabAlignment eAlignment;
- IToolPanelDeck& rPanels;
VclPtr< PanelTabBar > pTabBar;
AccessibleFactoryAccess aAccessibleFactory;
TabDeckLayouter_Data( vcl::Window& i_rParent, IToolPanelDeck& i_rPanels,
const TabAlignment i_eAlignment, const TabItemContent i_eItemContent )
:eAlignment( i_eAlignment )
- ,rPanels( i_rPanels )
,pTabBar( VclPtr<PanelTabBar>::Create( i_rParent, i_rPanels, i_eAlignment, i_eItemContent ) )
{
pTabBar->Show();