summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedric.bosdonnat.ooo@free.fr>2011-05-12 17:08:32 +0200
committerNoel Power <noel.power@novell.com>2011-05-12 16:37:40 +0100
commit07aedcbb2492e2e47167c8e059467ece5f01d383 (patch)
treebbfb6cc094a3a684ad4acff58499a890028ba367
parent746fff15ad34616635e09125f6d0656da39a05ad (diff)
fdo#36524: Fixed remaining SwSectionFrm after deleting TOX
false transformed to true restored the SwSectionFrm after deleting it.
-rw-r--r--sw/source/core/layout/sectfrm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/sectfrm.cxx b/sw/source/core/layout/sectfrm.cxx
index 9868d2c22d..2eff30538e 100644
--- a/sw/source/core/layout/sectfrm.cxx
+++ b/sw/source/core/layout/sectfrm.cxx
@@ -2444,7 +2444,7 @@ void SwSectionFrm::SwClientNotify( const SwModify& rMod, const SfxHint& rHint )
const SfxSimpleHint* pSimpleHint = dynamic_cast<const SfxSimpleHint*>(&rHint);
if ( pSimpleHint && pSimpleHint->GetId() == SFX_HINT_DYING && &rMod == GetRegisteredIn() )
{
- SwSectionFrm::MoveCntntAndDelete( this, sal_True );
+ SwSectionFrm::MoveCntntAndDelete( this, sal_False );
}
}