diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-23 12:22:26 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-01-24 07:56:57 +0100 |
commit | 945a119675788f7c8f0a133ac0271f9340c1653a (patch) | |
tree | 36b8ec346d009628b22922e510ba19fd2ece4f58 /svl | |
parent | 7b7c388fe402e14486664e36eeb6c1f0fe1e02b9 (diff) |
loplugin:constparams
Change-Id: I7c695073d9a9d3b7a641d6eb9fe01a47d8c3a504
Reviewed-on: https://gerrit.libreoffice.org/48392
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/stylepool.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/stylepool.cxx b/svl/source/items/stylepool.cxx index 6e52248eb82a..15fb042ef0e9 100644 --- a/svl/source/items/stylepool.cxx +++ b/svl/source/items/stylepool.cxx @@ -69,7 +69,7 @@ namespace { // #i86923# Node* findChildNode( const SfxPoolItem& rItem, const bool bIsItemIgnorable ); - Node* nextItemSet( Node* pLast, + Node* nextItemSet( Node const * pLast, const bool bSkipUnusedItemSet, const bool bSkipIgnorable ); // #i86923# @@ -155,7 +155,7 @@ namespace { * introduce parameters <bSkipUnusedItemSets> and <bSkipIgnorable> * and its handling. */ - Node* Node::nextItemSet( Node* pLast, + Node* Node::nextItemSet( Node const * pLast, const bool bSkipUnusedItemSets, const bool bSkipIgnorable ) { |