summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-03-20 13:19:32 +0100
committerMiklos Vajna <vmiklos@suse.cz>2013-03-20 13:23:20 +0100
commit62344016de056965a58ea2016d912a68eac0d6b0 (patch)
treeeb09a9a4b618d14db562e9b3dc849cf1237f804d
parent2903c5f59d257b6ab94f32df64513f2edf94fb0b (diff)
fdo#55814 SwDoc::UpdateExpFlds: hiding the last section may be safe
In case we know there is a non-section paragraph at the end of the document. Intentionally not adding a unit test as David Ostrovsky is working on one already. Change-Id: Ia6026846981b5af014246a8a604c5f762d34c891
-rw-r--r--sw/source/core/doc/docfld.cxx14
1 files changed, 10 insertions, 4 deletions
diff --git a/sw/source/core/doc/docfld.cxx b/sw/source/core/doc/docfld.cxx
index 8c0169502842..8474c968f359 100644
--- a/sw/source/core/doc/docfld.cxx
+++ b/sw/source/core/doc/docfld.cxx
@@ -1304,10 +1304,16 @@ void SwDoc::UpdateExpFlds( SwTxtFld* pUpdtFld, bool bUpdRefFlds )
// This section will be hidden, but it wasn't before
if (nShownSections == 1)
{
- // This would be the last section, so set its condition to false, and avoid hiding it.
- OUString aCond("0");
- pSect->SetCondition(aCond);
- bHide = false;
+ // Is the last node part of a section?
+ SwPaM aPam(GetNodes());
+ aPam.Move(fnMoveForward, fnGoDoc);
+ if (aPam.Start()->nNode.GetNode().StartOfSectionNode()->IsSectionNode())
+ {
+ // This would be the last section, so set its condition to false, and avoid hiding it.
+ OUString aCond("0");
+ pSect->SetCondition(aCond);
+ bHide = false;
+ }
}
nShownSections--;
}