summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/uibase/inc/conttree.hxx1
-rw-r--r--sw/source/uibase/utlui/content.cxx17
2 files changed, 2 insertions, 16 deletions
diff --git a/sw/source/uibase/inc/conttree.hxx b/sw/source/uibase/inc/conttree.hxx
index e496137bf292..ddaf387e5d9c 100644
--- a/sw/source/uibase/inc/conttree.hxx
+++ b/sw/source/uibase/inc/conttree.hxx
@@ -95,7 +95,6 @@ class SwContentTree
bool m_bIsOutlineMoveable :1;
bool m_bViewHasChanged :1;
bool m_bIsImageListInitialized : 1;
- bool m_bActiveDocModified :1;
static bool bIsInDrag;
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx
index 309304e2350b..84c6f1b7299d 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -803,7 +803,6 @@ SwContentTree::SwContentTree(vcl::Window* pParent, const ResId& rResId)
, m_bIsOutlineMoveable(true)
, m_bViewHasChanged(false)
, m_bIsImageListInitialized(false)
- , m_bActiveDocModified(false)
, m_bIsKeySpace(false)
{
SetHelpId(HID_NAVIGATOR_TREELIST);
@@ -1718,8 +1717,6 @@ void SwContentTree::Display( bool bActive )
sal_Int32 nDelta = pVScroll->GetThumbPos() - nOldScrollPos;
ScrollOutputArea( (short)nDelta );
}
-
- m_bActiveDocModified = false;
}
void SwContentTree::Clear()
@@ -2204,13 +2201,6 @@ void SwContentTree::SetConstantShell(SwWrtShell* pSh)
void SwContentTree::Notify(SfxBroadcaster & rBC, SfxHint const& rHint)
{
- SfxSimpleHint const*const pHint(dynamic_cast<SfxSimpleHint const*>(&rHint));
- if (pHint && SFX_HINT_DOCCHANGED == pHint->GetId())
- {
- m_bActiveDocModified = true;
- return;
- }
-
SfxViewEventHint const*const pVEHint(
dynamic_cast<SfxViewEventHint const*>(&rHint));
SwXTextView* pDyingShell = nullptr;
@@ -2423,11 +2413,8 @@ IMPL_LINK_NOARG_TYPED(SwContentTree, TimerUpdate, Timer *, void)
else if( (m_bIsActive || (m_bIsConstant && pActShell == GetWrtShell())) &&
HasContentChanged())
{
- if (!m_bIsActive || m_bActiveDocModified)
- { // don't burn cpu and redraw and flicker if not modified
- FindActiveTypeAndRemoveUserData();
- Display(true);
- }
+ FindActiveTypeAndRemoveUserData();
+ Display(true);
}
}
else if(!pView && m_bIsActive && !m_bIsIdleClear)