summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@suse.cz>2011-07-13 20:17:35 +0200
committerMichael Meeks <michael.meeks@novell.com>2011-07-18 16:31:25 +0100
commitbae73094a02deaad5f23027869151a866e6287e7 (patch)
tree15aa1c7bc23707c50e9446d890742d7ebfd0358f
parent7563bc73db5e50a956e659a207f5c5d0b3fcb378 (diff)
Fix counting the paragraphs, fdo#36816.
Signed-off-by: Noel Power <noel.power@novell.com> Signed-off-by: Michael Meeks <michael.meeks@novell.com>
-rw-r--r--sw/source/core/txtnode/txtedt.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sw/source/core/txtnode/txtedt.cxx b/sw/source/core/txtnode/txtedt.cxx
index 08d0c6b67b..d54875a0e5 100644
--- a/sw/source/core/txtnode/txtedt.cxx
+++ b/sw/source/core/txtnode/txtedt.cxx
@@ -1803,6 +1803,10 @@ void SwTxtNode::CountWords( SwDocStat& rStat,
{ // not counting hidden paras
return;
}
+
+ // count of non-empty paras
+ ++rStat.nPara;
+
// Shortcut when counting whole paragraph and current count is clean
if ( isCountAll && !IsWordCountDirty() )
{
@@ -1842,8 +1846,6 @@ void SwTxtNode::CountWords( SwDocStat& rStat,
sal_uInt32 nTmpChars = 0; // count of all chars
sal_uInt32 nTmpCharsExcludingSpaces = 0; // all non-white chars
- ++rStat.nPara; // count of non-empty paras
-
// count words in masked and expanded text:
if( pBreakIt->GetBreakIter().is() )
{