diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-08-19 16:55:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-08-19 16:55:06 +0200 |
commit | 8f30da6386fa414b9fe4c704b294a978df77347b (patch) | |
tree | 980e4018acff7a24a6399e33d7e1897fa6c9308c /include/oox/drawingml | |
parent | 9e310a4705ce956551059040696166aefb2388cb (diff) |
Some clang-tidy misc-move-constructor-init
...by turning the relevant ctor parameters into "const &".
Change-Id: Ia8d0aba5da10ad6b25f8689e2281e45b3d71c1fc
Diffstat (limited to 'include/oox/drawingml')
-rw-r--r-- | include/oox/drawingml/shapecontext.hxx | 2 | ||||
-rw-r--r-- | include/oox/drawingml/shapegroupcontext.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/drawingml/shapecontext.hxx b/include/oox/drawingml/shapecontext.hxx index 9d73a2105609..95a1ac08bd6c 100644 --- a/include/oox/drawingml/shapecontext.hxx +++ b/include/oox/drawingml/shapecontext.hxx @@ -33,7 +33,7 @@ namespace oox { namespace drawingml { class OOX_DLLPUBLIC ShapeContext : public ::oox::core::ContextHandler2 { public: - ShapeContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr pMasterShapePtr, ShapePtr pShapePtr ); + ShapeContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr const & pMasterShapePtr, ShapePtr const & pShapePtr ); virtual ~ShapeContext(); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; diff --git a/include/oox/drawingml/shapegroupcontext.hxx b/include/oox/drawingml/shapegroupcontext.hxx index c702bfbfd5c0..07b8538ea268 100644 --- a/include/oox/drawingml/shapegroupcontext.hxx +++ b/include/oox/drawingml/shapegroupcontext.hxx @@ -33,7 +33,7 @@ namespace oox { namespace drawingml { class OOX_DLLPUBLIC ShapeGroupContext : public ::oox::core::ContextHandler2 { public: - ShapeGroupContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr pMasterShapePtr, ShapePtr pGroupShapePtr ); + ShapeGroupContext( ::oox::core::ContextHandler2Helper& rParent, ShapePtr const & pMasterShapePtr, ShapePtr const & pGroupShapePtr ); virtual ~ShapeGroupContext(); virtual ::oox::core::ContextHandlerRef onCreateContext( ::sal_Int32 Element, const ::oox::AttributeList& rAttribs ) override; |