summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par6.cxx
diff options
context:
space:
mode:
authorOliver Specht <oliver.specht@cib.de>2016-04-27 16:37:48 +0200
committerOliver Specht <oliver.specht@cib.de>2016-04-28 09:40:02 +0000
commit5f63e19ddffdf3eaa2351968550498fdae35475d (patch)
tree0b2271b737233fe75acce652fef1a1cbaf163363 /sw/source/filter/ww8/ww8par6.cxx
parent376c337d46acf8819bf032251bfc7d5eb31db198 (diff)
tdf#74328: loading section page no. as 16 bit unsigned
The sprm sprmSPgnStart97 contains a 16 bit unsigned value. Test included. Change-Id: I300e9a94c13666cf8e71d3613b8f1171c7314cdd Reviewed-on: https://gerrit.libreoffice.org/24431 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'sw/source/filter/ww8/ww8par6.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par6.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par6.cxx b/sw/source/filter/ww8/ww8par6.cxx
index c271da497b7f..4b240867a2e5 100644
--- a/sw/source/filter/ww8/ww8par6.cxx
+++ b/sw/source/filter/ww8/ww8par6.cxx
@@ -997,7 +997,7 @@ void wwSectionManager::CreateSep(const long nTextPos, bool /*bMustHaveBreak*/)
/*sprmSDxaRight*/ 0xB022,
/*sprmSDzaGutter*/ 0xB025,
/*sprmSFPgnRestart*/ 0x3011,
- /*sprmSPgnStart*/ 0x501C,
+ /*sprmSPgnStart97*/ 0x501C,
/*sprmSDmBinFirst*/ 0x5007,
/*sprmSDmBinOther*/ 0x5008
};
@@ -1035,7 +1035,7 @@ void wwSectionManager::CreateSep(const long nTextPos, bool /*bMustHaveBreak*/)
// Page Number Restarts - sprmSFPgnRestart
aNewSection.maSep.fPgnRestart = ReadBSprm(pSep, pIds[6], 0);
- aNewSection.maSep.pgnStart = ReadBSprm( pSep, pIds[7], 0 );
+ aNewSection.maSep.pgnStart = ReadUSprm( pSep, pIds[7], 0 );
if (eVer >= ww::eWW6)
{