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/editsh.hxx | |
parent | 3a122347b9a47f1ff7103364e90b77bc605fafce (diff) |
Clean up integers representing positions in SwOutlineNodes vectors
Change-Id: If1a6a9cb61ffd355a85835127e7c893969833587
Diffstat (limited to 'sw/inc/editsh.hxx')
-rw-r--r-- | sw/inc/editsh.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/editsh.hxx b/sw/inc/editsh.hxx index c352a647ab5e..762389448461 100644 --- a/sw/inc/editsh.hxx +++ b/sw/inc/editsh.hxx @@ -462,7 +462,7 @@ public: bool OutlineUpDown( short nOffset = 1 ); - bool MoveOutlinePara( short nOffset = 1); + bool MoveOutlinePara( SwOutlineNodes::difference_type nOffset = 1); bool IsProtectedOutlinePara() const; @@ -800,8 +800,8 @@ public: /** May an outline be moved or copied? Check whether it's in text body, not in table, and not read-only (move). */ - bool IsOutlineMovable( sal_uInt16 nIdx ) const; - bool IsOutlineCopyable( sal_uInt16 nIdx ) const; + bool IsOutlineMovable( SwOutlineNodes::size_type nIdx ) const; + bool IsOutlineCopyable( SwOutlineNodes::size_type nIdx ) const; sal_uInt16 GetLineCount(); |