diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-17 13:16:30 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-17 13:10:42 +0000 |
commit | bb674aa5503ff40a5619d1fb4c9f310da5f5c983 (patch) | |
tree | e9b6d62f258cded0a5f207609a61157c8d0ef4c2 /sc/source/core | |
parent | b79cf88a048e5d8c784c97d99155104aef3d5dca (diff) |
loplugin:unusedfields
Change-Id: Id2dbbf384637223db3d334d95332251832918003
Reviewed-on: https://gerrit.libreoffice.org/30927
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/core')
-rw-r--r-- | sc/source/core/data/dpobject.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sc/source/core/data/dpobject.cxx b/sc/source/core/data/dpobject.cxx index 4c07fb1a1a4f..22d8744e0d23 100644 --- a/sc/source/core/data/dpobject.cxx +++ b/sc/source/core/data/dpobject.cxx @@ -312,7 +312,6 @@ ScDPObject::ScDPObject( ScDocument* pD ) : pServDesc( nullptr ), mpTableData(static_cast<ScDPTableData*>(nullptr)), pOutput( nullptr ), - mnAutoFormatIndex( 65535 ), nHeaderRows( 0 ), mbHeaderLayout(false), bAllowMove(false), @@ -332,7 +331,6 @@ ScDPObject::ScDPObject(const ScDPObject& r) : pServDesc( nullptr ), mpTableData(static_cast<ScDPTableData*>(nullptr)), pOutput( nullptr ), - mnAutoFormatIndex( r.mnAutoFormatIndex ), nHeaderRows( r.nHeaderRows ), mbHeaderLayout( r.mbHeaderLayout ), bAllowMove(false), @@ -363,7 +361,6 @@ ScDPObject& ScDPObject::operator= (const ScDPObject& r) aTableName = r.aTableName; aTableTag = r.aTableTag; aOutRange = r.aOutRange; - mnAutoFormatIndex = r.mnAutoFormatIndex; nHeaderRows = r.nHeaderRows; mbHeaderLayout = r.mbHeaderLayout; bAllowMove = false; |