diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-03-06 18:43:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-03-06 19:22:37 +0000 |
commit | 22d2b498ce0962f2083160a5739cca09206771d1 (patch) | |
tree | 4540ac4da744cb6d4b68d9828094285e441305c1 /editeng | |
parent | 3342a557e4009acde4416339798375d6954541f8 (diff) |
bIsExpanding is unused
Change-Id: I187ca7dc0e9e1a99e82145f4bcdce6abaac68278
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/outliner/outliner.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/editeng/source/outliner/outliner.cxx b/editeng/source/outliner/outliner.cxx index 9cd2ebb1063f..6a98d357a421 100644 --- a/editeng/source/outliner/outliner.cxx +++ b/editeng/source/outliner/outliner.cxx @@ -777,7 +777,6 @@ bool Outliner::Expand( Paragraph* pPara ) pUndo->nCount = pParaList->GetAbsPos( pPara ); } pHdlParagraph = pPara; - bIsExpanding = true; pParaList->Expand( pPara ); InvalidateBullet(pParaList->GetAbsPos(pPara)); if( bUndo ) @@ -808,7 +807,6 @@ bool Outliner::Collapse( Paragraph* pPara ) } pHdlParagraph = pPara; - bIsExpanding = false; pParaList->Collapse( pPara ); InvalidateBullet(pParaList->GetAbsPos(pPara)); if( bUndo ) @@ -1263,7 +1261,6 @@ Outliner::Outliner(SfxItemPool* pPool, sal_uInt16 nMode) , nMaxDepth(9) , nMinDepth(-1) , nFirstPage(1) - , bIsExpanding(false) , bFirstParaIsEmpty(true) , nBlockInsCallback(0) , bStrippingPortions(false) |