summaryrefslogtreecommitdiff
path: root/include/oox/vml/vmlshapecontext.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-31 09:28:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-31 10:34:58 +0200
commit8302f334b66f9d16e208a7cf4d4d1033664eb0e4 (patch)
treeb29579b478229b6716601ffd70bc996f04114251 /include/oox/vml/vmlshapecontext.hxx
parent9fd9d25d04709a3ec6957f6b40d5534bec86ed6a (diff)
loplugin:constparams in oox
Change-Id: I43984b4ece82da39ca61a91fa14e4660298509dd Reviewed-on: https://gerrit.libreoffice.org/40581 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/oox/vml/vmlshapecontext.hxx')
-rw-r--r--include/oox/vml/vmlshapecontext.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/oox/vml/vmlshapecontext.hxx b/include/oox/vml/vmlshapecontext.hxx
index 1c1565b62397..fe7afb417b52 100644
--- a/include/oox/vml/vmlshapecontext.hxx
+++ b/include/oox/vml/vmlshapecontext.hxx
@@ -49,7 +49,7 @@ class ShapeLayoutContext : public ::oox::core::ContextHandler2
{
public:
explicit ShapeLayoutContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
Drawing& rDrawing );
virtual ::oox::core::ContextHandlerRef
@@ -64,7 +64,7 @@ class ClientDataContext : public ::oox::core::ContextHandler2
{
public:
explicit ClientDataContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
ClientData& rClientData,
const AttributeList& rAttribs );
@@ -84,13 +84,13 @@ class ShapeContextBase : public ::oox::core::ContextHandler2
public:
static ::oox::core::ContextHandlerRef
createShapeContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
ShapeContainer& rShapes,
sal_Int32 nElement,
const AttributeList& rAttribs );
protected:
- explicit ShapeContextBase( ::oox::core::ContextHandler2Helper& rParent );
+ explicit ShapeContextBase( ::oox::core::ContextHandler2Helper const & rParent );
};
@@ -98,7 +98,7 @@ class ShapeTypeContext : public ShapeContextBase
{
public:
explicit ShapeTypeContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
ShapeType& rShapeType,
const AttributeList& rAttribs );
@@ -121,7 +121,7 @@ class ShapeContext : public ShapeTypeContext
{
public:
explicit ShapeContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
ShapeBase& rShape,
const AttributeList& rAttribs );
@@ -154,7 +154,7 @@ class GroupShapeContext : public ShapeContext
{
public:
explicit GroupShapeContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
GroupShape& rShape,
const AttributeList& rAttribs );
@@ -170,7 +170,7 @@ class RectangleShapeContext : public ShapeContext
{
public:
explicit RectangleShapeContext(
- ::oox::core::ContextHandler2Helper& rParent,
+ ::oox::core::ContextHandler2Helper const & rParent,
const AttributeList& rAttribs,
RectangleShape& rShape );