diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-11 14:20:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-10-11 16:05:49 +0200 |
commit | f477b54e01766fabc0179beec9aa3dc31b5824e2 (patch) | |
tree | 99efa8fffed5c397b3dc7974153bb3ffa49c872d /sc/inc/table.hxx | |
parent | 071c117ba551e579962ff5b70f79cb7934d96c77 (diff) |
loplugin:moveparam in sc
Change-Id: I4b9d45a6b0231841a5fe00d0193a8530b9e05559
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123389
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/table.hxx')
-rw-r--r-- | sc/inc/table.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/inc/table.hxx b/sc/inc/table.hxx index c31fd065cc43..cfe47f5f73e1 100644 --- a/sc/inc/table.hxx +++ b/sc/inc/table.hxx @@ -881,8 +881,8 @@ public: void UpdatePageBreaks( const ScRange* pUserArea ); void RemoveManualBreaks(); bool HasManualBreaks() const; - void SetRowManualBreaks( const ::std::set<SCROW>& rBreaks ); - void SetColManualBreaks( const ::std::set<SCCOL>& rBreaks ); + void SetRowManualBreaks( ::std::set<SCROW>&& rBreaks ); + void SetColManualBreaks( ::std::set<SCCOL>&& rBreaks ); void GetAllRowBreaks(::std::set<SCROW>& rBreaks, bool bPage, bool bManual) const; void GetAllColBreaks(::std::set<SCCOL>& rBreaks, bool bPage, bool bManual) const; |