Kaydet (Commit) b4ca7bd5 authored tarafından Noel Grandin's avatar Noel Grandin

loplugin:constparams in filter

Change-Id: Ia7bba27371db1a23a42d77df4c4bfc975fa0366b
Reviewed-on: https://gerrit.libreoffice.org/66770
Tested-by: Jenkins
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 94ab2ad8
...@@ -770,12 +770,12 @@ struct SvxMSDffShapeInfo ...@@ -770,12 +770,12 @@ struct SvxMSDffShapeInfo
{ {
bReplaceByFly = false; bReplaceByFly = false;
} }
SvxMSDffShapeInfo(SvxMSDffShapeInfo& rInfo): SvxMSDffShapeInfo(const SvxMSDffShapeInfo& rInfo):
nShapeId( rInfo.nShapeId ), nShapeId( rInfo.nShapeId ),
nFilePos( rInfo.nFilePos ), nFilePos( rInfo.nFilePos ),
nTxBxComp( rInfo.nTxBxComp ) nTxBxComp( rInfo.nTxBxComp ),
bReplaceByFly( rInfo.bReplaceByFly )
{ {
bReplaceByFly = rInfo.bReplaceByFly;
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment