summaryrefslogtreecommitdiff
path: root/svl/source/items/stylepool.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-08-24 09:23:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-08-24 18:14:23 +0200
commitc7799d71899c121334855c3234a9492687803b59 (patch)
tree3eeb29d4c1eec9de938f61da5d61237c7827f503 /svl/source/items/stylepool.cxx
parent32e22584872f1888c49c976f91f41d5edabcb45c (diff)
loplugin:returnconstval in svl
Change-Id: I55371fde92204e6405e74fb8deecbaf14707a312 Reviewed-on: https://gerrit.libreoffice.org/78053 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svl/source/items/stylepool.cxx')
-rw-r--r--svl/source/items/stylepool.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/items/stylepool.cxx b/svl/source/items/stylepool.cxx
index 14f30f35b26a..6471212c7ff4 100644
--- a/svl/source/items/stylepool.cxx
+++ b/svl/source/items/stylepool.cxx
@@ -74,7 +74,7 @@ namespace {
const bool bSkipIgnorable );
// #i86923#
bool hasIgnorableChildren( const bool bCheckUsage ) const;
- const std::shared_ptr<SfxItemSet> getItemSetOfIgnorableChild(
+ std::shared_ptr<SfxItemSet> getItemSetOfIgnorableChild(
const bool bSkipUnusedItemSets ) const;
};
@@ -205,7 +205,7 @@ namespace {
});
}
- const std::shared_ptr<SfxItemSet> Node::getItemSetOfIgnorableChild(
+ std::shared_ptr<SfxItemSet> Node::getItemSetOfIgnorableChild(
const bool bSkipUnusedItemSets ) const
{
DBG_ASSERT( hasIgnorableChildren( bSkipUnusedItemSets ),