diff options
author | Vasily Melenchuk <vasily.melenchuk@cib.de> | 2015-04-06 12:23:09 +0300 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2015-05-03 23:23:00 +0200 |
commit | bc9d02b0ca6244b46c9e2c59b7cc3618eb0f0148 (patch) | |
tree | 21e5b9f00dd0e3f75fee093748a41cebc6a9f38e /sw/inc/doc.hxx | |
parent | f7bed502ff0dc43f5a24f8e35c5573bdd76eed65 (diff) |
tdf#89783: sal_uInt16 replacement by size_t: sections
These replacements allow LO to load, save and mail merge documents having
more than 65536 sections in total.
Change-Id: I0e70889b1edc6e472a39f1f2638ac3c70a0d7058
Signed-off-by: Katarina Behrens <Katarina.Behrens@cib.de>
Diffstat (limited to 'sw/inc/doc.hxx')
-rw-r--r-- | sw/inc/doc.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/doc.hxx b/sw/inc/doc.hxx index 6daed2fb3549..c935ede87074 100644 --- a/sw/inc/doc.hxx +++ b/sw/inc/doc.hxx @@ -1375,7 +1375,7 @@ public: const SwSectionFmts& GetSections() const { return *mpSectionFmtTbl; } SwSectionFmt *MakeSectionFmt( SwSectionFmt *pDerivedFrom ); void DelSectionFmt( SwSectionFmt *pFmt, bool bDelNodes = false ); - void UpdateSection(sal_uInt16 const nSect, SwSectionData &, + void UpdateSection(size_t const nSect, SwSectionData &, SfxItemSet const*const = 0, bool const bPreventLinkUpdate = false); OUString GetUniqueSectionName( const OUString* pChkStr = 0 ) const; |