summaryrefslogtreecommitdiff
path: root/include/filter
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-08-22 14:42:58 +0300
committerTor Lillqvist <tml@collabora.com>2014-08-22 14:48:25 +0300
commite6fdd7ad0a4c548467157fa6791389e19f08993c (patch)
tree88c5c0734b911f262da14af5f90e318d4c240953 /include/filter
parentdb12d9042c71b872efe0ed2d94cf00852c57abb5 (diff)
The bLastBoxInChain fields are unused
Change-Id: I741733a053c8b0123be8efbcb9fde39f53f6d83c
Diffstat (limited to 'include/filter')
-rw-r--r--include/filter/msfilter/msdffimp.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx
index 6eb9a4f0ae6a..5f2d1c9a2132 100644
--- a/include/filter/msfilter/msdffimp.hxx
+++ b/include/filter/msfilter/msdffimp.hxx
@@ -259,7 +259,6 @@ struct MSFILTER_DLLPUBLIC SvxMSDffImportRec
bool bDrawHell :1;
bool bHidden :1;
bool bReplaceByFly :1;
- bool bLastBoxInChain :1;
bool bVFlip :1;
bool bHFlip :1;
bool bAutoWidth :1;
@@ -762,7 +761,6 @@ struct SvxMSDffShapeInfo
sal_uInt32 nTxBxComp;
bool bReplaceByFly :1; ///< shape can be replaced by a frame in Writer
- bool bLastBoxInChain:1;
explicit SvxMSDffShapeInfo(sal_uLong nFPos, sal_uInt32 nId=0, // sal_uLong nBIdx=0,
sal_uInt16 nSeqId=0, sal_uInt16 nBoxId=0):
@@ -771,7 +769,6 @@ struct SvxMSDffShapeInfo
nTxBxComp( (nSeqId << 16) + nBoxId )
{
bReplaceByFly = false;
- bLastBoxInChain = true;
}
SvxMSDffShapeInfo(SvxMSDffShapeInfo& rInfo):
nShapeId( rInfo.nShapeId ),
@@ -779,7 +776,6 @@ struct SvxMSDffShapeInfo
nTxBxComp( rInfo.nTxBxComp )
{
bReplaceByFly = rInfo.bReplaceByFly;
- bLastBoxInChain = rInfo.bLastBoxInChain;
}
};