diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-03-31 00:06:17 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-03-31 07:27:24 +0200 |
commit | 184be2d1352c5d3f3aa1e276d26c463c6e49b302 (patch) | |
tree | 65ee35397f445b264dcb05d0087aed60000f0e75 /oox/source | |
parent | f42d729e41da918bc496d5feb5861a09737c438a (diff) |
tdf#120703 PVS: remove redundant static casts
V572 It is odd that the object which was created using 'new' operator
is immediately cast to another type.
Change-Id: I54976062dc3f62eaaa79f89eff54454f0b24ac2c
Reviewed-on: https://gerrit.libreoffice.org/69989
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'oox/source')
-rw-r--r-- | oox/source/shape/ShapeContextHandler.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/shape/ShapeContextHandler.cxx b/oox/source/shape/ShapeContextHandler.cxx index 32533eadf825..3035a390a36f 100644 --- a/oox/source/shape/ShapeContextHandler.cxx +++ b/oox/source/shape/ShapeContextHandler.cxx @@ -191,7 +191,7 @@ ShapeContextHandler::getDrawingShapeContext() { mpDrawing.reset( new oox::vml::Drawing( *mxFilterBase, mxDrawPage, oox::vml::VMLDRAWING_WORD ) ); mxDrawingFragmentHandler.set - (dynamic_cast<ContextHandler *> + (static_cast<ContextHandler *> (new oox::vml::DrawingFragment ( *mxFilterBase, msRelationFragmentPath, *mpDrawing ))); } @@ -203,7 +203,7 @@ ShapeContextHandler::getDrawingShapeContext() { mxDrawingFragmentHandler.clear(); mxDrawingFragmentHandler.set - (dynamic_cast<ContextHandler *> + (static_cast<ContextHandler *> (new oox::vml::DrawingFragment ( *mxFilterBase, msRelationFragmentPath, *mpDrawing ))); } |