summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-29 12:04:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-29 12:04:51 +0200
commit58389480b74ccb181d2c14a3e74bc173ff30f997 (patch)
tree57060641fb66074f40d302ebe8646415271f3ebf /svtools
parent8332862a3669b40b00a6bd53f6ba489bfd9f510b (diff)
loplugin:redundantcast: const_cast to same type
Change-Id: Ifced01f17de220d430bb9d51d1fdc67242efcff8
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/graphic/provider.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/graphic/provider.cxx b/svtools/source/graphic/provider.cxx
index 7a5bda77d247..afca9bc366a0 100644
--- a/svtools/source/graphic/provider.cxx
+++ b/svtools/source/graphic/provider.cxx
@@ -653,7 +653,7 @@ void ImplApplyFilterData( ::Graphic& rGraphic, uno::Sequence< beans::PropertyVal
// only optimizing common bitmap actions:
case( MetaActionType::MAPMODE ):
{
- const_cast< MetaAction* >( pAction )->Execute( aDummyVDev.get() );
+ pAction->Execute( aDummyVDev.get() );
break;
}
case( MetaActionType::PUSH ):