diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-03-16 09:30:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-03-16 09:30:20 +0100 |
commit | a6ded3b0137f378a9e7a83903193d6e3fd9b0126 (patch) | |
tree | 3707745222b1a37adc153c4ad1ca118af0ecc268 /sw/inc/crsrsh.hxx | |
parent | 3a122347b9a47f1ff7103364e90b77bc605fafce (diff) |
Clean up integers representing positions in SwOutlineNodes vectors
Change-Id: If1a6a9cb61ffd355a85835127e7c893969833587
Diffstat (limited to 'sw/inc/crsrsh.hxx')
-rw-r--r-- | sw/inc/crsrsh.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/crsrsh.hxx b/sw/inc/crsrsh.hxx index 37a14b7b2eb5..feafb1a2207a 100644 --- a/sw/inc/crsrsh.hxx +++ b/sw/inc/crsrsh.hxx @@ -600,12 +600,12 @@ public: bool GotoOutline( const OUString& rName ); // to the next/previous or the given OutlineNode - void GotoOutline( sal_uInt16 nIdx ); + void GotoOutline( SwOutlineNodes::size_type nIdx ); // find the "outline position" in the nodes array of the current chapter - sal_uInt16 GetOutlinePos( sal_uInt8 nLevel = UCHAR_MAX ); + SwOutlineNodes::size_type GetOutlinePos( sal_uInt8 nLevel = UCHAR_MAX ); // select the given range of OutlineNodes. Optionally including the children // the sal_uInt16s are the positions in OutlineNodes-Array (EditShell) - bool MakeOutlineSel( sal_uInt16 nSttPos, sal_uInt16 nEndPos, + bool MakeOutlineSel( SwOutlineNodes::size_type nSttPos, SwOutlineNodes::size_type nEndPos, bool bWithChildren ); bool GotoNextOutline(); |