diff options
-rw-r--r-- | include/filter/msfilter/msdffimp.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx index f27956c0d7ef..84e66803b6dc 100644 --- a/include/filter/msfilter/msdffimp.hxx +++ b/include/filter/msfilter/msdffimp.hxx @@ -770,12 +770,12 @@ struct SvxMSDffShapeInfo { bReplaceByFly = false; } - SvxMSDffShapeInfo(SvxMSDffShapeInfo& rInfo): + SvxMSDffShapeInfo(const SvxMSDffShapeInfo& rInfo): nShapeId( rInfo.nShapeId ), nFilePos( rInfo.nFilePos ), - nTxBxComp( rInfo.nTxBxComp ) + nTxBxComp( rInfo.nTxBxComp ), + bReplaceByFly( rInfo.bReplaceByFly ) { - bReplaceByFly = rInfo.bReplaceByFly; } }; |