summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editeng/source/outliner/outliner.cxx3
-rw-r--r--include/editeng/outliner.hxx1
2 files changed, 0 insertions, 4 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)
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index 8405387f1881..039af4136e7e 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -615,7 +615,6 @@ class EDITENG_DLLPUBLIC Outliner : public SfxBroadcaster
sal_uInt16 nOutlinerMode;
- bool bIsExpanding; // Only valid in Expand/Collaps-Hdl, reset
bool bFirstParaIsEmpty;
sal_uInt8 nBlockInsCallback;
bool bStrippingPortions;