summaryrefslogtreecommitdiff
path: root/writerfilter/source/doctok
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-10-15 08:45:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-15 08:45:00 +0200
commit5d04fd117ab2519edd78a852f41d1be1e45da290 (patch)
tree53910c8ae0f767b75182869ad2993aee9a1d663a /writerfilter/source/doctok
parent3a3a41fba54979253029f35b98aefbc7fa68f1c3 (diff)
Remove unused member
Change-Id: I435f2781be620fa910a40a49fde19ecc81a70974
Diffstat (limited to 'writerfilter/source/doctok')
-rw-r--r--writerfilter/source/doctok/Dff.cxx4
-rw-r--r--writerfilter/source/doctok/Dff.hxx1
2 files changed, 2 insertions, 3 deletions
diff --git a/writerfilter/source/doctok/Dff.cxx b/writerfilter/source/doctok/Dff.cxx
index aaf77633c575..202bbd1642d0 100644
--- a/writerfilter/source/doctok/Dff.cxx
+++ b/writerfilter/source/doctok/Dff.cxx
@@ -30,13 +30,13 @@ typedef boost::shared_ptr<WW8Value> WW8ValueSharedPointer_t;
DffRecord::DffRecord(WW8Stream & rStream, sal_uInt32 nOffset,
sal_uInt32 nCount)
-: WW8StructBase(rStream, nOffset, nCount), bInitialized(false)
+: WW8StructBase(rStream, nOffset, nCount)
{
}
DffRecord::DffRecord(WW8StructBase * pParent, sal_uInt32 nOffset,
sal_uInt32 nCount)
-: WW8StructBase(pParent, nOffset, nCount), bInitialized(false)
+: WW8StructBase(pParent, nOffset, nCount)
{
}
diff --git a/writerfilter/source/doctok/Dff.hxx b/writerfilter/source/doctok/Dff.hxx
index db39229d8329..3cb66e9b2157 100644
--- a/writerfilter/source/doctok/Dff.hxx
+++ b/writerfilter/source/doctok/Dff.hxx
@@ -34,7 +34,6 @@ class DffBlock;
class DffRecord : public WW8StructBase, public writerfilter::Reference<Properties>,
public Sprm
{
- bool bInitialized;
public:
typedef boost::shared_ptr<DffRecord> Pointer_t;