summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-08-25 10:21:25 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-25 13:10:03 +0200
commit4d41b2e42fb91b99bd17b13f0f592978f4ccfba7 (patch)
tree7901e9cee894825e5bdc15999a2a2f385eee3bac /svl
parentd181d8acbf49e2fe87c8cf53a9431e503ccced55 (diff)
loplugin:unusedfields
Change-Id: I81bcf4f56599146536ba8d66cc86fa5a08737298 Reviewed-on: https://gerrit.libreoffice.org/41556 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r--svl/source/inc/poolio.hxx2
-rw-r--r--svl/source/items/itempool.cxx2
-rw-r--r--svl/source/misc/inettype.cxx1
3 files changed, 0 insertions, 5 deletions
diff --git a/svl/source/inc/poolio.hxx b/svl/source/inc/poolio.hxx
index 65ceb1680ec7..8318ff52fa8b 100644
--- a/svl/source/inc/poolio.hxx
+++ b/svl/source/inc/poolio.hxx
@@ -85,7 +85,6 @@ struct SfxItemPool_Impl
sal_uInt16 mnEnd;
sal_uInt16 nInitRefCount; // 1, during load, may be 2
MapUnit eDefMetric;
- bool bInSetItem;
SfxItemPool_Impl( SfxItemPool* pMaster, const OUString& rName, sal_uInt16 nStart, sal_uInt16 nEnd )
: maPoolItems(nEnd - nStart + 1)
@@ -99,7 +98,6 @@ struct SfxItemPool_Impl
, mnEnd(nEnd)
, nInitRefCount(0)
, eDefMetric(MapUnit::MapCM)
- , bInSetItem(false)
{
DBG_ASSERT(mnStart, "Start-Which-Id must be greater 0" );
}
diff --git a/svl/source/items/itempool.cxx b/svl/source/items/itempool.cxx
index 58f422cc3f7c..3f78b19f2e8c 100644
--- a/svl/source/items/itempool.cxx
+++ b/svl/source/items/itempool.cxx
@@ -177,7 +177,6 @@ SfxItemPool::SfxItemPool
{
pImpl->eDefMetric = MapUnit::MapTwip;
pImpl->nInitRefCount = 1;
- pImpl->bInSetItem = false;
if ( pDefaults )
SetDefaults(pDefaults);
@@ -203,7 +202,6 @@ SfxItemPool::SfxItemPool
{
pImpl->eDefMetric = rPool.pImpl->eDefMetric;
pImpl->nInitRefCount = 1;
- pImpl->bInSetItem = false;
// Take over static Defaults
if ( bCloneStaticDefaults )
diff --git a/svl/source/misc/inettype.cxx b/svl/source/misc/inettype.cxx
index 7ca340963859..a019f975b23c 100644
--- a/svl/source/misc/inettype.cxx
+++ b/svl/source/misc/inettype.cxx
@@ -42,7 +42,6 @@ struct MediaTypeEntry
struct TypeIDMapEntry
{
OUString m_aTypeName;
- OUString m_aPresentation;
};
class Registration